Improve local storage

This commit is contained in:
Peter Maquiran
2021-07-30 16:55:13 +01:00
parent 66e1863df9
commit 7c96aa9e8b
19 changed files with 260 additions and 210 deletions
+8 -8
View File
@@ -10,17 +10,17 @@ export class Attachments {
export class DocumentSetUpMeeting {
EventProcess: {
"SerialNumber"?: "sample string 1",
"SerialNumber"?: string,
"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",
"StartDate"?: string,
"EndDate"?: string,
"ReviewUserComment"?: string,
"MDName"?: string,
"MDEmail"?: string,
"IsAllDayEvent"?: boolean,
"Status"?: "sample string 11",
"Status"?: string,
"EventType"?: string,
"IsRecurring": boolean,
"ParticipantsList"?: EventPerson[],
@@ -30,7 +30,7 @@ export class DocumentSetUpMeeting {
"Day"?: 1,
"DayOfWeek"?: 0,
"Month"?: 1,
"LastOccurrence"?: "2021-07-28T13:22:55.031857+01:00"
"LastOccurrence"?: string
}
}