d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
21 lines
389 B
C#
21 lines
389 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; }
|
|
}
|