mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
bfa4f2ec91
Add approve page and criate its layout; Finish functionality for list approve page
22 lines
528 B
TypeScript
22 lines
528 B
TypeScript
import { EventBody } from './eventbody.model';
|
|
import { EventPerson } from './eventperson.model';
|
|
|
|
export class Event{
|
|
EventId: string;
|
|
Subject: string;
|
|
Body: EventBody;
|
|
Location: string;
|
|
CalendarId: string;
|
|
CalendarName: string;
|
|
StartDate: Date;
|
|
EndDate: Date;
|
|
EventType: string;
|
|
Attendees: EventPerson[];
|
|
IsMeeting: boolean;
|
|
IsRecurring: boolean;
|
|
AppointmentState: number;
|
|
TimeZone: string;
|
|
Organizer: string;
|
|
Categories: string[];
|
|
HasAttachments: boolean;
|
|
} |