File size: 524 Bytes
bb8c446
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

export type ActionItemStatus = 'Not Started' | 'In Progress' | 'Completed';

export interface ActionItem {
    item: string;
    description: string;
    status: ActionItemStatus;
}

export interface PlanCategory {
    category: string;
    description: string;
    items: ActionItem[];
}

export interface ActionPlan {
    title: string;
    summary: string;
    categories: PlanCategory[];
}

export interface CaseData {
    age: string;
    medicalConditions: string;
    workHistory: string;
    limitations: string;
}