040be2feaa
Convert constructors into primary constructors Simplified logic with use of ??, ??= and method groups Cleaned up redundant conditional access qualifiers
25 lines
699 B
C#
25 lines
699 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Eft.Common;
|
|
using SPTarkov.Server.Core.Models.Eft.Common.Tables;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Services;
|
|
|
|
public record InsuranceEquipmentPkg
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object>? ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("sessionID")]
|
|
public MongoId SessionId { get; set; }
|
|
|
|
[JsonPropertyName("pmcData")]
|
|
public PmcData? PmcData { get; set; }
|
|
|
|
[JsonPropertyName("itemToReturnToPlayer")]
|
|
public Item? ItemToReturnToPlayer { get; set; }
|
|
|
|
[JsonPropertyName("traderId")]
|
|
public MongoId TraderId { get; set; }
|
|
}
|