using e_suite.Workflow.Core.Attributes; using e_suite.Workflow.Core.Enums; using e_suite.Workflow.Core.Interfaces; namespace e_suite.Workflow.Core.Tasks; /// /// Create a table of field data for output to PDF or AdobeIllustrator /// [GeneralTask] public class ContentCollationTask : TaskBase, IAssignees { public List Assignees { get; set; } = []; public CompletionRule AssigneesCompletionRule { get; set; } public List> OutcomeActions { get; set; } = []; }