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

18 lines
452 B
C#

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