21 lines
374 B
C#
21 lines
374 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Spt.Bots;
|
|
|
|
public record ItemSpawnLimitSettings
|
|
{
|
|
[JsonPropertyName("currentLimits")]
|
|
public Dictionary<string, double>? CurrentLimits
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("globalLimits")]
|
|
public Dictionary<string, double>? GlobalLimits
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|