17 lines
497 B
C#
17 lines
497 B
C#
using System.ComponentModel;
|
|
|
|
namespace e_suite.Workflow.Core;
|
|
|
|
public enum TaskState
|
|
{
|
|
[Description("The task is waiting to start")]
|
|
Pending,
|
|
[Description("The task has been cancelled")]
|
|
Cancelled,
|
|
[Description("The task is active for user/system interaction and processing")]
|
|
Active,
|
|
[Description("The active portion of the task has finished and the task is ready to complete")]
|
|
ReadyToComplete,
|
|
[Description("The task has been completed")]
|
|
Completed
|
|
} |