New Services, New Login, Better things

This commit is contained in:
Paulo Pinto
2020-08-21 16:18:37 +01:00
parent 86b3c8f039
commit ffadf6601c
15 changed files with 177 additions and 238 deletions
+4 -6
View File
@@ -3,7 +3,7 @@ import { EventPerson } from './eventperson.model';
import { EventAttachment } from './eventattachment.model';
import { EventOrganizer } from './organizer.model';
export interface Event{
export class Event{
EventId: string;
Subject: string;
@@ -14,15 +14,13 @@ export interface Event{
StartDate: string;
EndDate: string;
EventType: string;
RequiredAttendees: EventPerson;
OptionalAttendees: EventPerson;
HasAttachments: boolean;
RequiredAttendees: EventPerson[];
OptionalAttendees: EventPerson[];
IsMeeting: boolean;
IsRecurring: boolean;
AppointmentState: number;
TimeZone: string;
Organizer: string;
Categories: string[];
Attachments: EventAttachment;
Attachments: EventAttachment[];
}