spartaxx.businessmodels 1.0.323 → 1.0.325
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +3 -1
- package/Campaign/ConciergeBlastInfo.ts +9 -15
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -30,6 +30,7 @@ import { DynamicDMFormParams } from "./DynamicDMFormParams";
|
|
30
30
|
import { DynamicDMFormClientInputData } from "./DynamicDMFormClientInputData";
|
31
31
|
import { DMpropertySurveyClientInfo } from "./DMpropertySurveyClientInfo";
|
32
32
|
import { ClientInputFormSteper } from "./ClientInputForm";
|
33
|
+
import { NoticeOfProtestSteper } from "./NoticeOfProtestClientInfo";
|
33
34
|
|
34
35
|
export {
|
35
36
|
ScoreCardDetails,
|
@@ -69,5 +70,6 @@ export {
|
|
69
70
|
DMpropertySurveyClientInfo,
|
70
71
|
AccountDocumentInfo,
|
71
72
|
ClientDocumentInfo,
|
72
|
-
ClientInputFormSteper
|
73
|
+
ClientInputFormSteper,
|
74
|
+
NoticeOfProtestSteper
|
73
75
|
}
|
@@ -1,18 +1,12 @@
|
|
1
1
|
export interface ConciergeBlastInfo {
|
2
|
-
ClientId?: number
|
3
|
-
ClientNumber?:
|
4
|
-
ClientName?:
|
5
|
-
MailingAddress?:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
Remarks?: String;
|
10
|
-
Priority?: String;
|
11
|
-
AppointmentModeId?: number;
|
12
|
-
AppointmentDateTimeFrom?: Date;
|
13
|
-
AppointmentStatusId?: number;
|
2
|
+
ClientId?: number;
|
3
|
+
ClientNumber?: string;
|
4
|
+
ClientName?: string;
|
5
|
+
MailingAddress?: string;
|
6
|
+
EmailAddress?: string;
|
7
|
+
PhoneNumber?: string;
|
8
|
+
AppointmentDateTimeFrom?: string;
|
14
9
|
AppointmentLocation?: string;
|
15
|
-
|
16
|
-
|
17
|
-
SiteVisitProperty?: number;
|
10
|
+
Remarks?: string;
|
11
|
+
AccountId?: number;
|
18
12
|
}
|