ff1dfa54ae
* Do a small pass on SPT's config's to reduce warnings and cleanup * Revert * Revert EFT models * Set list as null
31 lines
462 B
C#
31 lines
462 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Config;
|
|
|
|
public abstract record BaseConfig
|
|
{
|
|
[JsonPropertyName("kind")]
|
|
public abstract string Kind
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
public record RunIntervalValues
|
|
{
|
|
[JsonPropertyName("inRaid")]
|
|
public int InRaid
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("outOfRaid")]
|
|
public int OutOfRaid
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|