mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-13 13:49:54 +08:00
10 lines
306 B
Python
10 lines
306 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class RSSTorrents(BaseModel):
|
|
name: str = Field(..., alias="item_path")
|
|
url: str = Field(..., alias="url")
|
|
analyze: bool = Field(..., alias="analyze")
|
|
enabled: bool = Field(..., alias="enabled")
|
|
torrents: list[str] = Field(..., alias="torrents")
|