Files
komgAPI/src/komgapi/schemas/Thumbnail.py
2025-02-17 20:28:17 +01:00

28 lines
424 B
Python

from __future__ import annotations
from typing import List
from pydantic import BaseModel
class Thumbnail(BaseModel):
id: str
seriesId: str
type: str
selected: bool
mediaType: str
fileSize: int
width: int
height: int
class ReadlistThumbnail(BaseModel):
id: str
readlistId: str
type: str
selected: bool
mediaType: str
fileSize: int
width: int
height: int