mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
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:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user