2024-04-16 18:29:40 +00:00
|
|
|
namespace LootDumpProcessor.Storage;
|
2023-08-12 19:08:38 +01:00
|
|
|
|
|
|
|
public interface IKey
|
|
|
|
{
|
|
|
|
KeyType GetKeyType();
|
|
|
|
string[] GetLookupIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum KeyType
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Meant to be used as "single table" storage style
|
|
|
|
*/
|
|
|
|
Unique,
|
|
|
|
/**
|
|
|
|
* Meant to be used as "relational table" storage style
|
|
|
|
*/
|
|
|
|
Subdivisioned
|
|
|
|
}
|