Backend/e-suite.Workflow.Core/Interfaces/IOutcome.cs
Colin Dawson 052b833dd6 Replaced IFailedLoopback with IOUtcome
Added a translation service that will update the base language conversions for each supported language.
2026-02-22 23:43:57 +00:00

12 lines
279 B
C#

using e_suite.Workflow.Core.Attributes;
namespace e_suite.Workflow.Core.Interfaces;
[TaskCapability]
public interface IOutcome<T>
{
//Todo runtime only property.
//public T? TaskOutcome { get; set; }
Dictionary<T, Guid> OutcomeActions { get; set; }
}