12 lines
306 B
C#
12 lines
306 B
C#
using e_suite.Workflow.Core.Attributes;
|
|
|
|
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
|
|
{
|
|
|
|
} |