Spaces:
Running
Running
| using System; | |
| namespace TaskTrackingSystem.Shared.Enums | |
| { | |
| public enum TaskPriority : long | |
| { | |
| Low = 1, | |
| Medium = 2, | |
| High = 3 | |
| } | |
| } | |
| using System; | |
| namespace TaskTrackingSystem.Shared.Enums | |
| { | |
| public enum TaskPriority : long | |
| { | |
| Low = 1, | |
| Medium = 2, | |
| High = 3 | |
| } | |
| } | |