Files
sam-sales/kodata/ref/types.ts
kimbokon 685184763a KoDATA EW 리포트
인터뷰 계획안
2025-12-22 13:30:59 +09:00

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[];
}