import { EventBody } from './eventbody.model'; import { EventPerson } from './eventperson.model'; export class Event{ EventId: string; Subject: string; Body: EventBody; Location: string; CalendarId: string; CalendarName: string; StartDate: Date; EndDate: Date; EventType: string; Attendees: EventPerson[]; IsMeeting: boolean; IsRecurring: boolean; AppointmentState: number; TimeZone: string; Organizer: string; Categories: string[]; HasAttachments: boolean; }