SI_InteligentnyWozekWidlowy/data/enum/Priority.py

7 lines
85 B
Python

from enum import Enum
class Priority(Enum):
HIGH = 1
MEDIUM = 2
LOW = 3