mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-11 18:10:06 +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"
|