15 lines
526 B
C#
15 lines
526 B
C#
using e_suite.Workflow.Core.Attributes;
|
|
using e_suite.Workflow.Core.Enums;
|
|
using e_suite.Workflow.Core.Interfaces;
|
|
|
|
namespace e_suite.Workflow.Core.Tasks;
|
|
|
|
/// <summary>
|
|
/// Create a table of field data for output to PDF or AdobeIllustrator
|
|
/// </summary>
|
|
[GeneralTask]
|
|
public class ContentCollationTask : TaskBase, IAssignees<TaskAssignee>, IOutcome<DefaultOutcome>
|
|
{
|
|
public List<TaskAssignee> Assignees { get; set; } = [];
|
|
public Dictionary<DefaultOutcome, Guid> OutcomeActions { get; set; } = [];
|
|
} |