mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
7 lines
84 B
Python
7 lines
84 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Source(BaseModel):
|
|
id: int
|
|
name: str
|