PaiGram/utils/enums.py
洛水居室 233e7ab58d
♻️ PaiGram V4
Co-authored-by: luoshuijs <luoshuijs@outlook.com>
Co-authored-by: Karako <karakohear@gmail.com>
Co-authored-by: xtaodada <xtao@xtaolink.cn>
2023-03-14 09:27:22 +08:00

14 lines
171 B
Python

from enum import IntEnum
__all__ = ("Priority",)
class Priority(IntEnum):
"""优先级"""
Lowest = 0
Low = 4
Normal = 8
High = 12
Highest = 16