You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RecordingStatusEnum.py 326B

12345678910111213141516
  1. from enum import Enum, unique
  2. # 录屏状态枚举
  3. @unique
  4. class RecordingStatus(Enum):
  5. RECORDING_WAITING = ("5", "待录制")
  6. RECORDING_RUNNING = ("10", "录制中")
  7. RECORDING_SUCCESS = ("15", "录制完成")
  8. RECORDING_TIMEOUT = ("20", "录制超时")
  9. RECORDING_FAILED = ("25", "录制失败")