mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 07:05:36 +01:00
16 lines
219 B
Python
16 lines
219 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class GenreSource(BaseModel):
|
|
id: int
|
|
name: str
|
|
|
|
|
|
class Genre(BaseModel):
|
|
id: int
|
|
source: GenreSource
|
|
remote_id: int
|
|
code: str
|
|
description: str
|
|
meta: str
|