namespace TicketManager { public enum Status { Undefined = 0, ToDo = 1, InProgress = 2, Overdue = 3, Done = 4, Abandoned = 5 } }