mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-26 02:30:13 +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"
|