Files
SPT-Server-Build/Libraries/Core/Models/Spt/Location/RaidChanges.cs
T
2025-01-25 09:34:41 +00:00

16 lines
411 B
C#

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