Files
SPT-Server-Build/Libraries/Core/Models/Spt/Config/MatchConfig.cs
T
2025-02-07 19:36:17 +00:00

28 lines
471 B
C#

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