SystemyDialogowe/SystemActType.py
2021-04-26 15:13:52 +02:00

10 lines
138 B
Python

from enum import Enum, unique
@unique
class SystemActType(Enum):
WELCOME_MSG = 0
INFORM = 1
BYE = 2
NOT_UNDERSTOOD = -1