mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 07:05:36 +01:00
11 lines
160 B
Python
11 lines
160 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class BookAnnotation(BaseModel):
|
|
id: int
|
|
title: str
|
|
text: str
|
|
file: Optional[str]
|