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

22 lines
565 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout;
public class HideoutImproveAreaRequestData
{
[JsonPropertyName("Action")]
public string Action { get; set; } = "HideoutImproveArea";
/** Hideout area id from areas.json */
[JsonPropertyName("id")]
public string AreaId { get; set; }
[JsonPropertyName("areaType")]
public int AreaType { get; set; }
[JsonPropertyName("items")]
public List<HideoutItem> Items { get; set; }
[JsonPropertyName("timestamp")]
public long Timestamp { get; set; }
}