Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Config/MatchConfig.cs
T
Jesse ff1dfa54ae Do a small pass on SPT's config's to reduce warnings and cleanup (#348)
* Do a small pass on SPT's config's to reduce warnings and cleanup

* Revert

* Revert EFT models

* Set list as null
2025-06-04 14:46:52 +01:00

28 lines
505 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;
}
}