LootDumpProcessor/Model/Processing/DumpProcessData.cs

10 lines
355 B
C#
Raw Normal View History

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