Backend/e-suite.Workflow.Core/Interfaces/IFailedLoopback.cs
2026-01-20 21:50:10 +00:00

12 lines
317 B
C#

using System.ComponentModel.DataAnnotations;
namespace e_suite.Workflow.Core;
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; }
}