mirror of
https://github.com/barkeser2002/CoomerDL.git
synced 2026-09-25 02:30:11 +03:00
14 lines
332 B
Python
14 lines
332 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class DownloadRequest:
|
|
url: str
|
|
download_folder: str
|
|
download_images: bool = True
|
|
download_videos: bool = True
|
|
download_compressed: bool = False
|
|
create_subfolders: bool = True
|
|
profile_name: str = ""
|
|
max_downloads: int = 3
|
|
only_this_url: bool = False |