mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:43:28 +02:00
13 lines
274 B
Python
13 lines
274 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class MetaDataProviderShowSearchResult(BaseModel):
|
|
poster_path: str | None
|
|
overview: str | None
|
|
name: str
|
|
external_id: int
|
|
year: int | None
|
|
metadata_provider: str
|
|
added: bool
|
|
vote_average: float | None = None
|