pagination.py 202 B

123456789101112
  1. from typing import Generic, TypeVar
  2. from pydantic import BaseModel
  3. T = TypeVar("T")
  4. class PaginatedResponse(BaseModel, Generic[T]):
  5. items: list[T]
  6. total: int
  7. page: int
  8. pageSize: int