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 Servers { get; set; } = new(); [JsonPropertyName("groups")] public List Groups { get; set; } = new(); [JsonPropertyName("schemas")] public Dictionary Schemas { get; set; } = new(); } }