22 lines
335 B
TypeScript
22 lines
335 B
TypeScript
|
|
export interface Question {
|
|
id: string;
|
|
text: string;
|
|
category: string;
|
|
priority: 'high' | 'medium' | 'low';
|
|
}
|
|
|
|
export interface Section {
|
|
id: string;
|
|
title: string;
|
|
subtitle: string;
|
|
icon: string;
|
|
questions: Question[];
|
|
}
|
|
|
|
export interface MeetingOverview {
|
|
date: string;
|
|
target: string;
|
|
purpose: string[];
|
|
}
|