using System.ComponentModel; using e_suite.Workflow.Core.Attributes; using e_suite.Workflow.Core.Enums; using e_suite.Workflow.Core.Interfaces; namespace e_suite.Workflow.Core.Tasks; /// /// A user has to open this task, manually set it to ready to complete /// [GeneralTask] public class BasicTask : TaskBase, IAssignees, IOutcome { public List Assignees { get; set; } = []; public Dictionary OutcomeActions { get; set; } = []; }