Add integration of create new event from expedient

This commit is contained in:
Tiago Kayaya
2020-11-18 21:55:58 +01:00
parent 52908b509d
commit 5ef476f8a1
14 changed files with 317 additions and 157 deletions
+22
View File
@@ -0,0 +1,22 @@
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;
}