14 lines
395 B
C#
14 lines
395 B
C#
using System.ComponentModel;
|
|
using e_suite.Workflow.Core.Attributes;
|
|
using e_suite.Workflow.Core.Interfaces;
|
|
|
|
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, IAssignees<ITaskAssignee>
|
|
{
|
|
public IList<ITaskAssignee> Assignees { get; }
|
|
} |