mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-09 13:40:13 +08:00
12 lines
268 B
Python
12 lines
268 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class TorrentInfo(BaseModel):
|
|
name: str = Field(...)
|
|
link: str = Field(...)
|
|
|
|
|
|
class FileSet(BaseModel):
|
|
media_path: str = Field(...)
|
|
sc_subtitle: str | None = Field(None)
|
|
tc_subtitle: str | None = Field(None) |