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