initial commit

This commit is contained in:
2025-02-17 20:28:17 +01:00
commit e685c7b930
53 changed files with 3285 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
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