Files
doneit-web/src/app/models/CallMeeting.ts
T
2021-08-06 14:34:39 +01:00

39 lines
817 B
TypeScript

import { EventPerson } from "./eventperson.model"
export class Attachments {
Id?: number
Source: number
SourceId: any
SourceName: any
ApplicationId: number | string
}
export class DocumentSetUpMeeting {
EventProcess: {
"SerialNumber"?: string,
"Body": string,
"Location": string,
"Subject": string,
"StartDate"?: string,
"EndDate"?: string,
"ReviewUserComment"?: string,
"MDName"?: string,
"MDEmail"?: string,
"IsAllDayEvent"?: boolean,
"Status"?: string,
"EventType"?: string,
"IsRecurring": boolean,
"ParticipantsList"?: EventPerson[],
"Message": string,
"EventRecurrence": {
"Type": string,
"Day"?: any,
"DayOfWeek"?: any,
"Month"?: any,
"LastOccurrence"?: any
},
}
Attachments: Attachments[]
}