Files
SPT-Server-Build/Libraries/Core/Models/Spt/Services/LootItem.cs
T
2025-01-19 17:45:48 +00:00

19 lines
391 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; }
}