mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 02:30:45 -05:00
15 lines
366 B
C#
15 lines
366 B
C#
namespace LootDumpProcessor.Storage;
|
|
|
|
public abstract class AbstractKey(string[] indexes) : IKey
|
|
{
|
|
private string[] _indexes = indexes;
|
|
public abstract KeyType GetKeyType();
|
|
|
|
public string SerializedKey
|
|
{
|
|
get => string.Join("|", _indexes);
|
|
set => _indexes = value.Split("|");
|
|
}
|
|
|
|
public string[] GetLookupIndex() => _indexes;
|
|
} |