mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
12 lines
No EOL
272 B
C#
12 lines
No EOL
272 B
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Library.FilePlugins
|
|
{
|
|
public interface IFilePlugin
|
|
{
|
|
string[] HandlesTypes { get; }
|
|
|
|
Task<OperationResult<bool>> Process(FileInfo file, bool doJustInfo, int? submissionId);
|
|
}
|
|
} |