mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
39 lines
948 B
TypeScript
39 lines
948 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"?: "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,
|
|
"EventRecurrence": {
|
|
"Type": 0,
|
|
"Day"?: 1,
|
|
"DayOfWeek"?: 0,
|
|
"Month"?: 1,
|
|
"LastOccurrence"?: "2021-07-28T13:22:55.031857+01:00"
|
|
}
|
|
}
|
|
|
|
Attachments: Attachments[]
|
|
}
|