mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
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
|