2024-04-16 18:29:40 +00:00
|
|
|
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();
|
2024-04-22 21:01:02 +01:00
|
|
|
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();
|
|
|
|
}
|