1-Improved project structure. 2-Added new pages. 3-Prepared the environment to consume APIS. 4-Added Axios to the project. 5-Added get methods.

This commit is contained in:
Tiago Kayaya
2020-08-18 23:32:12 +01:00
parent 6e273e6eb8
commit 63f7b08091
23 changed files with 756 additions and 34 deletions
+27
View File
@@ -0,0 +1,27 @@
import { EventBody } from './eventbody.model';
import { EventPerson } from './eventperson.model';
import { EventAttachment } from './eventattachment.model';
export interface Event{
EventId: string;
Subject: string;
Body: EventBody;
Location: string;
CalendarId: string;
CalendarName: string;
StartDate: string;
EndDate: string;
EventType: string;
RequiredAttendees: EventPerson;
OptionalAttendees: EventPerson;
HasAttachments: boolean;
IsMeeting: boolean;
IsRecurring: boolean;
AppointmentState: number;
TimeZone: string;
Organizer: string;
Categories: string[];
Attachments: EventAttachment;
}