yavsc/Yavsc.Abstract/Interfaces/IBatch.cs

13 lines
271 B
C#

using System;
namespace Yavsc.Abstract.Interfaces
{
public interface IBatch<TInput, TOutput>
{
string WorkingDir { get; set; }
Action<TOutput> ResultHandler { get; }
void Launch(TInput Input);
string LogPath { get; set; }
}
}