13 lines
275 B
C#
13 lines
275 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 HtmlLogPath { get; set; }
|
|
}
|
|
} |