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

13 lines
278 B
C#

using System.ComponentModel;
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
{
}