45 lines
714 B
C#
45 lines
714 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.InRaid;
|
|
|
|
public record InsuredItemsData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("id")]
|
|
public string? Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("durability")]
|
|
public int? Durability
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("maxDurability")]
|
|
public int? MaxDurability
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("hits")]
|
|
public int? Hits
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("usedInQuest")]
|
|
public bool? UsedInQuest
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|