mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-06-01 04:49:39 +08:00
8 lines
111 B
Python
8 lines
111 B
Python
import enum
|
|
|
|
|
|
class DownloadQuality(str, enum.Enum):
|
|
fast = "fast"
|
|
medium = "medium"
|
|
slow = "slow"
|