mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-06-06 16:14:40 +08:00
8 lines
196 B
Python
8 lines
196 B
Python
from pydantic import BaseModel, HttpUrl, Field
|
|
|
|
|
|
class OfflineDownloadCreate(BaseModel):
|
|
url: HttpUrl
|
|
dest_dir: str = Field(..., min_length=1)
|
|
filename: str = Field(..., min_length=1)
|