Files
SPT-Server-Build/Libraries/Core/Models/Spt/Services/LootItem.cs
T
2025-02-07 19:36:17 +00:00

35 lines
487 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Services;
public record LootItem
{
[JsonPropertyName("id")]
public string? Id
{
get;
set;
}
[JsonPropertyName("tpl")]
public string? Tpl
{
get;
set;
}
[JsonPropertyName("isPreset")]
public bool? IsPreset
{
get;
set;
}
[JsonPropertyName("stackCount")]
public int? StackCount
{
get;
set;
}
}