Files
doneit-web/src/app/models/CallMeeting.ts
T

39 lines
832 B
TypeScript
Raw Normal View History

2021-07-29 15:40:24 +01:00
import { EventPerson } from "./eventperson.model"
export class Attachments {
Id?: number
Source: number
SourceId: any
SourceName: any
ApplicationId: number | string
}
2021-07-29 10:13:39 +01:00
export class DocumentSetUpMeeting {
2021-07-29 15:40:24 +01:00
EventProcess: {
2021-07-30 16:55:13 +01:00
"SerialNumber"?: string,
2021-07-29 15:40:24 +01:00
"Body": string,
"Location": string,
"Subject": string,
2021-08-20 12:02:27 +01:00
"StartDate"?: string | Date,
"EndDate"?: string | Date,
2021-07-30 16:55:13 +01:00
"ReviewUserComment"?: string,
"MDName"?: string,
"MDEmail"?: string,
2021-07-29 15:40:24 +01:00
"IsAllDayEvent"?: boolean,
2021-07-30 16:55:13 +01:00
"Status"?: string,
2021-07-29 15:40:24 +01:00
"EventType"?: string,
"IsRecurring": boolean,
"ParticipantsList"?: EventPerson[],
"Message": string,
2021-07-28 14:18:02 +01:00
"EventRecurrence": {
2021-08-06 14:34:39 +01:00
"Type": string,
"Day"?: any,
"DayOfWeek"?: any,
"Month"?: any,
"LastOccurrence"?: any
},
2021-07-28 14:18:02 +01:00
}
2021-07-29 10:13:39 +01:00
2021-07-29 15:40:24 +01:00
Attachments: Attachments[]
}