13 lines
326 B
C#
13 lines
326 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; }
|
|
}
|