18 lines
362 B
C#
18 lines
362 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Spt.Services;
|
|
|
|
public class 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; }
|
|
} |