using System; using Yavsc.Abstract.Interfaces; namespace Yavsc.Server.Models.IT.SourceCode { public abstract class Batch : IBatch { public string WorkingDir { get; set; } public string LogPath { get; set; } public Action ResultHandler { get; private set; } public string []Args { get; set; } public abstract void Launch(TInput Input); } }