using e_suite.Workflow.Core.Attributes; using e_suite.Workflow.Core.Enums; using e_suite.Workflow.Core.Interfaces; namespace e_suite.Workflow.Core.Tasks; [GeneralTask] public class ApprovalTask : TaskBase, IStage, IOutcome { public ICollection Tasks { get; } = new List(); public ApprovalVerdict TaskOutcome { get; set; } public Dictionary OutcomeActions { get; set; } = []; public bool OverrideDefaultTaskProgression { get; set; } }