28 lines
424 B
Python
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
|