Refactor code structure for improved readability and maintainability
This commit is contained in:
13
Models/QueueJobStatus.cs
Normal file
13
Models/QueueJobStatus.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Models
|
||||
{
|
||||
public static class QueueJobStatus
|
||||
{
|
||||
public const string Pending = "Pending";
|
||||
public const string Running = "Running";
|
||||
public const string WaitingForApproval = "WaitingForApproval";
|
||||
public const string Succeeded = "Succeeded";
|
||||
public const string Failed = "Failed";
|
||||
public const string Rejected = "Rejected";
|
||||
public const string Cancelled = "Cancelled";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user