mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
11 lines
244 B
C#
11 lines
244 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace LootDumpProcessor.Model.Tarkov;
|
|||
|
|
|||
|
public class Slot
|
|||
|
{
|
|||
|
[JsonPropertyName("_name")] public string Name { get; set; }
|
|||
|
|
|||
|
|
|||
|
[JsonPropertyName("_required")] public bool Required { get; set; }
|
|||
|
}
|