Files
EonaCat.DoxaApi/DoxaApi/Models/ApiDocument.cs
T
2026-06-20 10:26:27 +02:00

20 lines
526 B
C#

using System.Text.Json.Serialization;
namespace EonaCat.DoxaApi.Models
{
public sealed class ApiDocument
{
[JsonPropertyName("info")]
public ApiInfo Info { get; set; } = new();
[JsonPropertyName("servers")]
public List<string> Servers { get; set; } = new();
[JsonPropertyName("groups")]
public List<ApiGroup> Groups { get; set; } = new();
[JsonPropertyName("schemas")]
public Dictionary<string, SchemaModel> Schemas { get; set; } = new();
}
}