13 lines
278 B
C#
Raw Normal View History

using LootDumpProcessor.Utils;
namespace LootDumpProcessor.Storage.Collections;
2023-08-12 19:08:38 +01:00
public class FlatKeyableList<T> : List<T>, IKeyable
{
public string __ID { get; } = KeyGenerator.GetNextKey();
2023-08-12 19:08:38 +01:00
public IKey GetKey()
{
return new FlatUniqueKey([__ID]);
2023-08-12 19:08:38 +01:00
}
}