Files
SPT-Server-Build/Core/Models/Spt/Location/RaidChanges.cs
T
2025-01-08 14:01:23 +00:00

15 lines
407 B
C#

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