14 lines
398 B
C#
14 lines
398 B
C#
using e_suite.Workflow.Core.Attributes;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace e_suite.Workflow.Core.Interfaces;
|
|
|
|
[TaskCapability]
|
|
public interface IFailedLoopback
|
|
{
|
|
/// <summary>
|
|
/// ITask OnCompleteAsync returns false, the workflow processor will initiate a loopback to this item.
|
|
/// </summary>
|
|
[Required]
|
|
public Task Loopback { get; set; }
|
|
} |