cc745f4c46
Also moved TransactionId in `InsuranceRequestData` to be MongoId, updated associated code
15 lines
406 B
C#
15 lines
406 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
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 MongoId TransactionId { get; set; }
|
|
}
|