yavsc/Yavsc.Abstract/Workflow/Tasks/IExecutionData.cs

17 lines
314 B
C#

7 years ago
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Yavsc.Abstract.Workflow
{
public interface IExecutionData
{
Task Payload { get; }
ITaskMetaData MetaData { get; }
string [] Args { get; }
IList<IMayBeFixable> Faults { get; }
}
}