Files
SPT-Server-Build/Core/Models/Spt/Location/RaidChanges.cs
T
2025-01-17 18:13:37 +00:00

16 lines
409 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Location;
public record RaidChanges
{
[JsonPropertyName("dynamicLootPercent")]
public float? DynamicLootPercent { get; set; }
[JsonPropertyName("staticLootPercent")]
public float? StaticLootPercent { get; set; }
[JsonPropertyName("simulatedRaidStartSeconds")]
public int? SimulatedRaidStartSeconds { get; set; }
}