8 lines
171 B
C#
8 lines
171 B
C#
using LootDumpProcessor.Model.Processing;
|
|
|
|
namespace LootDumpProcessor.Process;
|
|
|
|
public interface IIntakeReader
|
|
{
|
|
bool Read(string file, out BasicInfo basicInfo);
|
|
} |