Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Services/LootItem.cs
T
2025-06-25 15:16:38 +01:00

22 lines
499 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Spt.Services;
public record LootItem
{
[JsonExtensionData]
public Dictionary<string, object>? ExtensionData { get; set; }
[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; }
}