export interface ICalendar { id: string; spaceId: string; userId: string; title: string; color: string; googleCalendar?: GoogleCalendar; createdAt: Date; updatedAt?: Date; deletedAt?: Date; /** List of user IDs (userId) with whom the calendar is shared */ sharedWith?: string[]; } export interface GoogleCalendar { id: string; name: string; account: string; }