15 lines
409 B
C#
15 lines
409 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.Insurance;
|
|
|
|
public record InsureRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("tid")]
|
|
public string? TransactionId { get; set; }
|
|
|
|
[JsonPropertyName("items")]
|
|
public List<MongoId>? Items { get; set; }
|
|
}
|