Files
SPT-Server-Build/Core/Models/Eft/InRaid/InsuredItemsData.cs
T

22 lines
489 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.InRaid;
public class InsuredItemsData
{
[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; }
}