from enum import Enum from pydantic import BaseModel class Paging(BaseModel): pageSize: int pageIndex: int totalCount: int