namespace LootDumpProcessor.Storage; public interface IDataStorage { void Setup(); void Store(T t) where T : IKeyable; bool Exists(IKey t); T GetItem(IKey key) where T : IKeyable; List GetAll(); }