This commit is contained in:
2018-04-14 10:58:16 +02:00
parent 8846d5b1ce
commit 3d0aab280b
7 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Yavsc.Abstract.Workflow
{
public interface ITaskRunner
{
IExecutionData Run( ITaskMetaData taskMetaData, string [] args);
}
}