SystemyDialogowe/SystemActType.py

15 lines
232 B
Python
Raw Normal View History

2021-04-26 15:13:52 +02:00
from enum import Enum, unique
@unique
class SystemActType(Enum):
WELCOME_MSG = 0
2021-05-31 13:52:01 +02:00
BYE = 1
REQMORE = 2
AFFIRM = 3
CONFIRM_DOMAIN = 4
MEETING_LIST = 5
FREE_TIME = 6
REQUEST = 7
2021-04-26 15:13:52 +02:00
NOT_UNDERSTOOD = -1