mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
10 lines
163 B
Python
10 lines
163 B
Python
import enum
|
|
|
|
|
|
class MMChoice(enum.Enum):
|
|
YES = "🔵"
|
|
LATE_SHORT = "🕐"
|
|
LATE_MEDIUM = "🕒"
|
|
LATE_LONG = "🕗"
|
|
MAYBE = "❔"
|
|
NO = "❌"
|