Backend/e-suite.Workflow.Core/Tasks/FileReleaseTask.cs

14 lines
490 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>
/// This task will allow Asset files to be released, and automatically uploaded to an external source
/// </summary>
[GeneralTask(allowMultiple: false)]
public class FileReleaseTask : TaskBase, IOutcome<DefaultOutcome>
{
public List<OutcomeAction<DefaultOutcome>> OutcomeActions { get; set; } = [];
}