Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Config/MatchConfig.cs
T
2025-06-18 17:09:20 +00:00

16 lines
430 B
C#

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