mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
import { EventBody } from './eventbody.model';
|
|
import { Participant } from './participant.model';
|
|
|
|
export class ProcessEvent{
|
|
EventId: string;
|
|
Subject: string;
|
|
Body: EventBody;
|
|
Location: string;
|
|
CalendarId: string;
|
|
CalendarName: string;
|
|
StartDate: Date;
|
|
EndDate: Date;
|
|
EventType: string;
|
|
Participants: Participant[];
|
|
IsMeeting: boolean;
|
|
IsRecurring: boolean;
|
|
AppointmentState: number;
|
|
TimeZone: string;
|
|
Organizer: string;
|
|
Categories: string[];
|
|
HasAttachments: boolean;
|
|
} |