8 lines
221 B
C#
8 lines
221 B
C#
|
using LootDumpProcessor.Model.Processing;
|
|||
|
|
|||
|
namespace LootDumpProcessor.Process.Processor.DumpProcessor;
|
|||
|
|
|||
|
public interface IDumpProcessor
|
|||
|
{
|
|||
|
Dictionary<OutputFileType, object> ProcessDumps(List<PartialData> dumps);
|
|||
|
}
|