Files
doneit-web/src/app/models/event.model.ts
T

22 lines
528 B
TypeScript
Raw Normal View History

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