from pydantic import BaseModel class PaginationResponse(BaseModel): items: list total_records: int current_page: int total_pages: int