Files
SPT-Server-Build/Libraries/Core/Models/Eft/InRaid/ItemDeliveryRequestData.cs
T
2025-02-07 19:36:17 +00:00

22 lines
357 B
C#

using System.Text.Json.Serialization;
using Core.Models.Eft.Common.Tables;
namespace Core.Models.Eft.InRaid;
public record ItemDeliveryRequestData
{
[JsonPropertyName("items")]
public List<Item>? Items
{
get;
set;
}
[JsonPropertyName("traderId")]
public string? TraderId
{
get;
set;
}
}