Files
SPT-Server-Build/Core/Models/Eft/Hideout/HideoutUpgradeCompleteRequestData.cs
T

15 lines
382 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout;
public class HideoutUpgradeCompleteRequestData
{
[JsonPropertyName("Action")]
public string? Action { get; set; } = "HideoutUpgradeComplete";
[JsonPropertyName("areaType")]
public int? AreaType { get; set; }
[JsonPropertyName("timestamp")]
public long? Timestamp { get; set; }
}