mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
12 lines
No EOL
188 B
C#
12 lines
No EOL
188 B
C#
namespace TicketManager
|
|
{
|
|
public enum Status
|
|
{
|
|
Undefined = 0,
|
|
ToDo = 1,
|
|
InProgress = 2,
|
|
Overdue = 3,
|
|
Done = 4,
|
|
Abandoned = 5
|
|
}
|
|
} |