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