15 lines
412 B
C#
15 lines
412 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; }
|
|
} |