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

27 lines
635 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Hideout;
public class HideoutPutItemInRequestData
{
[JsonPropertyName("Action")]
public string Action { get; set; } = "HideoutPutItemsInAreaSlots";
[JsonPropertyName("areaType")]
public int AreaType { get; set; }
[JsonPropertyName("items")]
public Dictionary<string, ItemDetails> Items { get; set; }
[JsonPropertyName("timestamp")]
public long Timestamp { get; set; }
}
public class ItemDetails
{
[JsonPropertyName("count")]
public int Count { get; set; }
[JsonPropertyName("id")]
public string Id { get; set; }
}