7 lines
85 B
Python
7 lines
85 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class Priority(Enum):
|
||
|
HIGH = 1
|
||
|
MEDIUM = 2
|
||
|
LOW = 3
|