SystemyDialogowe/UserActType.py

16 lines
246 B
Python
Raw Normal View History

2021-04-25 23:17:14 +02:00
from enum import Enum, unique
@unique
class UserActType(Enum):
2021-05-16 23:11:55 +02:00
HELLO = 0
2021-05-16 16:56:37 +02:00
BYE = 1
CREATE_MEETING = 2
CANCEL_MEETING = 3
CHANGE_MEETING = 4
2021-05-16 18:07:23 +02:00
MEETING_LIST = 5
CONFIRM = 6
2021-05-17 15:06:42 +02:00
NEGATE = 7
THANKYOU = 8
2021-04-25 23:17:14 +02:00
INVALID = -1