mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 04:45:27 +00:00
233e7ab58d
Co-authored-by: luoshuijs <luoshuijs@outlook.com> Co-authored-by: Karako <karakohear@gmail.com> Co-authored-by: xtaodada <xtao@xtaolink.cn>
14 lines
171 B
Python
14 lines
171 B
Python
from enum import IntEnum
|
|
|
|
__all__ = ("Priority",)
|
|
|
|
|
|
class Priority(IntEnum):
|
|
"""优先级"""
|
|
|
|
Lowest = 0
|
|
Low = 4
|
|
Normal = 8
|
|
High = 12
|
|
Highest = 16
|