This commit is contained in:
2026-06-07 17:48:09 +07:00
parent de55110b19
commit dfa0e720ac
12 changed files with 354 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from pydantic import BaseModel
from typing import Optional
class Task(BaseModel):
category: str
task_name: str
status: str
progress: str # e.g., "75%" or "In Progress"
notes: Optional[str] = ""
class ProgressReport(BaseModel):
tasks: list[Task]