result_model.py 152 B

12345678
  1. from pydantic import BaseModel
  2. class PaginationResponse(BaseModel):
  3. items: list
  4. total_records: int
  5. current_page: int
  6. total_pages: int