mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
8 lines
176 B
C#
8 lines
176 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace LootDumpProcessor.Model.Tarkov;
|
|||
|
|
|||
|
public class Grid
|
|||
|
{
|
|||
|
[JsonPropertyName("_props")] public GridProps Props { get; set; }
|
|||
|
}
|