evaluate sqlmodel

This commit is contained in:
2025-04-13 16:16:10 +02:00
parent a43e2c806c
commit b14a267b5b
107 changed files with 2517 additions and 6 deletions
View File
+10
View File
@@ -0,0 +1,10 @@
from uuid import UUID
from pydantic import BaseModel
class ComicResponse(BaseModel):
id: UUID
title: str
completed: bool
+16
View File
@@ -0,0 +1,16 @@
from uuid import UUID
from pydantic import BaseModel
class MediaFileResponse(BaseModel):
id: UUID
title: str | None = None
file_name: str | None = None
cloud_link: str | None = None
url: str
review: bool = False
should_download: bool = False
class Link(BaseModel):
url: str