2020-08-18 23:32:12 +01:00
|
|
|
import { EventBody } from './eventbody.model';
|
|
|
|
|
import { EventPerson } from './eventperson.model';
|
|
|
|
|
|
2020-08-21 16:18:37 +01:00
|
|
|
export class Event{
|
2020-08-18 23:32:12 +01:00
|
|
|
EventId: string;
|
|
|
|
|
Subject: string;
|
|
|
|
|
Body: EventBody;
|
|
|
|
|
Location: string;
|
|
|
|
|
CalendarId: string;
|
|
|
|
|
CalendarName: string;
|
2020-09-04 01:25:32 +01:00
|
|
|
StartDate: Date;
|
|
|
|
|
EndDate: Date;
|
2020-08-18 23:32:12 +01:00
|
|
|
EventType: string;
|
2020-08-25 14:08:13 +01:00
|
|
|
Attendees: EventPerson[];
|
2020-08-18 23:32:12 +01:00
|
|
|
IsMeeting: boolean;
|
|
|
|
|
IsRecurring: boolean;
|
|
|
|
|
AppointmentState: number;
|
|
|
|
|
TimeZone: string;
|
|
|
|
|
Organizer: string;
|
|
|
|
|
Categories: string[];
|
2020-08-24 23:41:15 +01:00
|
|
|
HasAttachments: boolean;
|
2020-08-18 23:32:12 +01:00
|
|
|
}
|