Backend/e-suite.Workflow.Core/Tasks/ContentCollationTask.cs
2026-01-20 21:50:10 +00:00

10 lines
283 B
C#

namespace e_suite.Workflow.Core;
/// <summary>
/// Create a table of field data for output to PDF or AdobeIllustrator
/// </summary>
[GeneralTask]
public class ContentCollationTask : TaskBase, IAssignees<ITaskAssignee>
{
public IList<ITaskAssignee> Assignees { get; } = [];
}