Files
2025-08-21 09:46:00 +00:00

14 lines
386 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Models.Spt.Bots;
public record ItemSpawnLimitSettings
{
[JsonPropertyName("currentLimits")]
public Dictionary<MongoId, double>? CurrentLimits { get; set; }
[JsonPropertyName("globalLimits")]
public Dictionary<MongoId, double>? GlobalLimits { get; set; }
}