using e_suite.Workflow.Core.Attributes;
using e_suite.Workflow.Core.Enums;
using e_suite.Workflow.Core.Interfaces;
namespace e_suite.Workflow.Core.Tasks;
///
/// This task will allow Asset files to be released, and automatically uploaded to an external source
///
[GeneralTask(allowMultiple: false)]
public class FileReleaseTask : TaskBase, IOutcome
{
public Dictionary OutcomeActions { get; set; } = [];
}