Files
SPT-Server-Build/Core/Models/Spt/Config/MatchConfig.cs
T
2025-01-10 13:49:28 +00:00

16 lines
402 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; }
[JsonPropertyName("randomiseMapContainers")]
public Dictionary<string, bool> RandomiseMapContainers { get; set; }
}