Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HideoutUpgradeRequestData.cs
T
2025-01-19 17:45:48 +00:00

19 lines
451 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout;
public record HideoutUpgradeRequestData
{
[JsonPropertyName("Action")]
public string? Action { get; set; } = "HideoutUpgrade";
[JsonPropertyName("areaType")]
public int? AreaType { get; set; }
[JsonPropertyName("items")]
public List<HideoutItem>? Items { get; set; }
[JsonPropertyName("timestamp")]
public long? Timestamp { get; set; }
}