0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 09:30:46 -05:00

8 lines
169 B
C#

using LootDumpProcessor.Model;
namespace LootDumpProcessor.Process;
public interface IComposedKeyGenerator
{
ComposedKey Generate(IReadOnlyList<Item>? items);
}