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