fastcheck/fastcheck_api/app/schemas/common.py
2026-04-16 12:05:29 -04:00

9 lines
187 B
Python

from __future__ import annotations
from pydantic import BaseModel, Field
class Page(BaseModel):
page: int = Field(default=1, ge=1)
limit: int = Field(default=10, ge=1, le=100)