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

12 lines
248 B
C#

using e_suite.Workflow.Core.Attributes;
namespace e_suite.Workflow.Core.Tasks;
/// <summary>
/// A user has to open this task, manually set it to ready to complete
/// </summary>
[GeneralTask]
public class BasicTask : TaskBase
{
}