15 lines
396 B
C#
15 lines
396 B
C#
using System.ComponentModel;
|
|
|
|
namespace eSuite.Core.Enums;
|
|
|
|
public enum ActivityState
|
|
{
|
|
[Description("The activity is ready to start")]
|
|
Pending,
|
|
[Description("The activity has been cancelled")]
|
|
Cancelled,
|
|
[Description("The activity is currently active for processing")]
|
|
Active,
|
|
[Description("Processing of this activity has finished")]
|
|
Completed
|
|
} |