11 lines
179 B
Python
11 lines
179 B
Python
from enum import Enum
|
|
|
|
class Priority(Enum):
|
|
"""
|
|
Enum for the different priority levels.
|
|
"""
|
|
MIN = 1
|
|
LOW = 2
|
|
DEFAULT = 3
|
|
HIGH = 4
|
|
MAX = URGENT = 5
|