Files
SPT-Server-Build/Core/Models/Eft/Hideout/HideoutImproveAreaRequestData.cs
T
2025-01-17 18:13:37 +00:00

23 lines
572 B
C#

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