// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // using System.Text.Json.Serialization; namespace Astral.ApiServer.Models; /// /// Version information about this instance. /// public class MetaverseVersionModel { /// /// Version string. /// [JsonPropertyName("version")] public string Version { get; set; } /// /// Codename. /// [JsonPropertyName("codename")] public string Codename { get; set; } }