Files
game-marathon/backend/app/schemas/common.py

15 lines
211 B
Python
Raw Normal View History

2025-12-14 02:38:35 +07:00
from pydantic import BaseModel
class MessageResponse(BaseModel):
message: str
class ErrorResponse(BaseModel):
detail: str
class PaginationParams(BaseModel):
limit: int = 20
offset: int = 0