LootDumpProcessor/Model/Processing/DumpProcessData.cs

10 lines
338 B
C#
Raw Normal View History

2023-08-12 19:08:38 +01:00
using LootDumpProcessor.Storage;
namespace LootDumpProcessor.Model.Processing;
public class DumpProcessData
{
public Dictionary<string, IKey> LooseLootCounts { get; set; } = new();
public List<PreProcessedStaticLoot> ContainerCounts { get; set; } = new();
public Dictionary<string, int> MapCounts { get; set; } = new();
}