File size: 141 Bytes
66340f1
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from typing import Any

from pydantic.main import BaseModel


class RequestParams(BaseModel):
    skip: int
    limit: int
    order_by: Any