Files
SPT-Server-Build/Core/Models/Spt/Config/MatchConfig.cs
T

12 lines
265 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Config;
public class MatchConfig
{
[JsonPropertyName("kind")]
public string Kind { get; set; } = "spt-match";
[JsonPropertyName("enabled")]
public bool Enabled { get; set; }
}