brestok's picture
fixed consult notes
3f47633
raw
history blame contribute delete
314 Bytes
from typing import ClassVar
from pydantic import BaseModel
from ocr.api.report.model import ReportModel
class Paging(BaseModel):
pageSize: int
pageIndex: int
totalCount: int
class ReportModelShort(ReportModel):
report: ClassVar[str]
changes: ClassVar[str]
originalText: ClassVar[str]