EventsService Changes. Attendees Page. Others.

This commit is contained in:
Paulo Pinto
2020-08-25 12:47:49 +01:00
parent 751b8dd7c5
commit 11fdfe1e54
78 changed files with 201 additions and 1187 deletions
+1 -2
View File
@@ -12,8 +12,7 @@ export class Event{
StartDate: string;
EndDate: string;
EventType: string;
RequiredAttendees: EventPerson[];
OptionalAttendees: EventPerson[];
Attendees: EventPerson[];
IsMeeting: boolean;
IsRecurring: boolean;
AppointmentState: number;
+1
View File
@@ -1,4 +1,5 @@
export class EventPerson{
EmailAddress: string;
Name: string;
IsRequired: boolean;
}