26 lines
622 B
C#
26 lines
622 B
C#
|
// <copyright file="MetaverseVersionModel.cs" company="alveus.dev">
|
||
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
||
|
// </copyright>
|
||
|
|
||
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Astral.ApiServer.Models;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Version information about this instance.
|
||
|
/// </summary>
|
||
|
public class MetaverseVersionModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Version string.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("version")]
|
||
|
public string Version { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Codename.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("codename")]
|
||
|
public string Codename { get; set; }
|
||
|
}
|