Files
SPT-Server-Build/Core/Models/Spt/Config/MatchConfig.cs
T
2025-01-06 23:24:11 +00:00

12 lines
278 B
C#

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