import { CalendarTypeViewModel } from "./calendarType.models"; export interface CalendarViewModel { id: string; starttime: Date; endtime: Date; title: string; content: string; location: string; allDay: boolean; createdAt: Date; updatedAt: Date; type: CalendarTypeViewModel; }