Files
SPT-Server-Build/Libraries/Core/Models/Eft/Hideout/HideoutPutItemInRequestData.cs
T
2025-01-21 12:37:55 +00:00

27 lines
606 B
C#

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