SystemyDialogowe/SystemActType.py

10 lines
138 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
INFORM = 1
BYE = 2
NOT_UNDERSTOOD = -1