21 lines
556 B
C#
21 lines
556 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Luski.net.JsonTypes;
|
|
|
|
public class LocalServerInfo
|
|
{
|
|
[JsonInclude]
|
|
[JsonPropertyName("alternate_servers")]
|
|
public ServerData[] AlternateServers { get; set; } = Array.Empty<ServerData>();
|
|
}
|
|
|
|
[JsonSerializable(typeof(LocalServerInfo))]
|
|
[JsonSourceGenerationOptions(
|
|
GenerationMode = JsonSourceGenerationMode.Default,
|
|
PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase,
|
|
WriteIndented = false)]
|
|
internal partial class LocalServerInfoContext : JsonSerializerContext
|
|
{
|
|
|
|
} |