This commit is contained in:
2026-07-09 09:35:22 +03:00
parent a79db30ea9
commit 147b774e44
9 changed files with 99 additions and 103 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface MeetingResult {
success: boolean;
subject: string;
date: string;
startTime: string;
endTime: string;
location: string;
requiredAttendees: string[];
optionalAttendees: string[];
error: string;
}