mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 07:10:45 -05:00
14 lines
406 B
C#
14 lines
406 B
C#
using System.Text.Json.Serialization;
|
|
using LootDumpProcessor.Serializers.Json.Converters;
|
|
using LootDumpProcessor.Storage;
|
|
|
|
namespace LootDumpProcessor.Model.Processing;
|
|
|
|
public class PreProcessedLooseLoot
|
|
{
|
|
public Dictionary<string, int> Counts { get; set; }
|
|
|
|
[JsonConverter(typeof(NetJsonKeyConverter))] public IKey ItemProperties { get; set; }
|
|
|
|
public int MapSpawnpointCount { get; set; }
|
|
} |