mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
19 lines
279 B
Python
19 lines
279 B
Python
from pydantic import BaseModel
|
|
|
|
from app.serializers.orjson_config import ORJSONConfig
|
|
|
|
|
|
class Source(BaseModel):
|
|
id: int
|
|
name: str
|
|
|
|
class Config(ORJSONConfig):
|
|
pass
|
|
|
|
|
|
class CreateSource(BaseModel):
|
|
name: str
|
|
|
|
class Config(ORJSONConfig):
|
|
pass
|