10 lines
338 B
C#
10 lines
338 B
C#
|
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();
|
|||
|
}
|