SystemyDialogowe/UserActType.py

12 lines
183 B
Python
Raw Normal View History

2021-04-25 23:17:14 +02:00
from enum import Enum, unique
@unique
class UserActType(Enum):
WELCOME_MSG = 0
2021-05-16 16:56:37 +02:00
BYE = 1
CREATE_MEETING = 2
CANCEL_MEETING = 3
CHANGE_MEETING = 4
2021-04-25 23:17:14 +02:00
INVALID = -1