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

39 lines
948 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: {
"SerialNumber"?: "sample string 1",
"Body": string,
"Location": string,
"Subject": string,
"StartDate"?: "2021-07-28T13:22:55.031857+01:00",
"EndDate"?: "2021-07-28T13:22:55.031857+01:00",
"ReviewUserComment"?: "sample string 7",
"MDName"?: "sample string 8",
"MDEmail"?: "sample string 9",
"IsAllDayEvent"?: boolean,
"Status"?: "sample string 11",
"EventType"?: string,
"IsRecurring": boolean,
"ParticipantsList"?: EventPerson[],
"Message": string,
2021-07-28 14:18:02 +01:00
"EventRecurrence": {
"Type": 0,
2021-07-29 15:40:24 +01:00
"Day"?: 1,
"DayOfWeek"?: 0,
"Month"?: 1,
"LastOccurrence"?: "2021-07-28T13:22:55.031857+01:00"
}
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[]
}