14 lines
364 B
C#
14 lines
364 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Trade;
|
|
|
|
public record ProcessBaseTradeRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[JsonPropertyName("tid")]
|
|
public string? TransactionId { get; set; }
|
|
}
|