feat: enums

This commit is contained in:
2024-04-03 00:28:08 +08:00
parent b78040a795
commit bb39a5912b
5 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,9 @@
from enum import IntEnum
class ArcaeaRatingClass(IntEnum):
PAST = 0
PRESENT = 1
FUTURE = 2
BEYOND = 3
ETERNAL = 4