Files
fund-tracer/backend/app/schemas/analysis.py
2026-03-12 12:32:29 +08:00

15 lines
257 B
Python

from app.schemas.base import CamelModel
class AnalysisStatusOut(CamelModel):
case_id: str
status: str
progress: int = 0
current_step: str = ""
message: str = ""
class AnalysisTriggerOut(CamelModel):
task_id: str
message: str