mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
17 lines
153 B
C#
17 lines
153 B
C#
namespace TicketManager
|
|
{
|
|
public enum Difficulty
|
|
{
|
|
Undefined = 0,
|
|
Easy = 1,
|
|
Medium = 2,
|
|
Hard = 3,
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|