mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
27 lines
680 B
TypeScript
27 lines
680 B
TypeScript
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;
|
|
|
|
} |