0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 02:30:45 -05:00
loot-dump-processor/Model/Processing/PreProcessedLooseLoot.cs
2023-08-12 19:08:38 +01:00

19 lines
446 B
C#

using LootDumpProcessor.Storage;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Processing;
public class PreProcessedLooseLoot : IKeyable
{
public Dictionary<string, int> Counts { get; set; }
[JsonConverter(typeof(NewtonsoftJsonKeyConverter))]
public IKey ItemProperties { get; set; }
public int MapSpawnpointCount { get; set; }
public IKey GetKey()
{
throw new NotImplementedException();
}
}