WutheringWaves/SDKServer/Models/BaseConfig/TDConfig.cs

13 lines
264 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 TDConfig
{
[JsonPropertyName("URL")]
public required string Url { get; set; }
[JsonPropertyName("AppID")]
public required string AppID { get; set; }
}