WutheringWaves/SDKServer/Models/BaseConfig/PrivateServersConfig.cs

12 lines
285 B
C#
Raw Normal View History

2024-02-07 21:41:39 +00:00
using System.Text.Json.Serialization;
namespace SDKServer.Models.BaseConfig;
public record PrivateServersConfig
{
[JsonPropertyName("enable")]
public bool Enable { get; set; }
[JsonPropertyName("serverUrl")]
public string ServerUrl { get; set; } = string.Empty;
}