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