Files
SPT-Server-Build/Core/Models/Eft/Hideout/HideoutUpgradeRequestData.cs
T
2025-01-07 10:42:52 +00:00

19 lines
495 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Tables;
namespace Core.Models.Eft.Hideout;
public class 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; }
}