brestok's picture
init
50553ea
raw
history blame contribute delete
137 Bytes
from enum import Enum
from pydantic import BaseModel
class Paging(BaseModel):
pageSize: int
pageIndex: int
totalCount: int