13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
export interface MvpPlan {
|
|
projectId: string;
|
|
coreFlows: string[];
|
|
coreFeatures: string[];
|
|
supportingFeatures: string[];
|
|
outOfScope: string[];
|
|
technicalTasks: string[];
|
|
blockers: string[];
|
|
overallConfidence: number;
|
|
}
|
|
|
|
|