Backend/e-suite.Core/eSuite.Core/Workflow/TaskState.cs
2026-01-20 21:50:10 +00:00

17 lines
512 B
C#

using System.ComponentModel;
namespace eSuite.Core.Workflow;
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
}