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(taskIcon: "faEyeSlash")] public class AdhocApprovalTask : TaskBase, IAssignees, IOutcome { public List Assignees { get; set; } = []; public ApprovalVerdict TaskOutcome { get; set; } public List> OutcomeActions { get; set; } = []; }