using LootDumpProcessor.Utils; namespace LootDumpProcessor.Storage.Collections; public class FlatKeyableList : List, IKeyable { public string __ID { get; } = KeyGenerator.GetNextKey(); public IKey GetKey() { return new FlatUniqueKey([__ID]); } }