2639504471
Removed unnecessary properties from quest object
18 lines
501 B
C#
18 lines
501 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
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("tid")]
|
|
public string? TransactionId { get; set; }
|
|
|
|
[JsonPropertyName("items")]
|
|
public List<MongoId>? Items { get; set; }
|
|
}
|