spartaxx.businessmodels 1.0.322 → 1.0.324
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +3 -1
- package/CCC/NoticeOfProtestClientInfo.ts +10 -1
- 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,6 +1,15 @@
|
|
1
1
|
import { CCCTemplateData } from "./CCCTemplateData";
|
2
|
+
import { ClientInputFormSteper } from "./ClientInputForm";
|
2
3
|
|
3
4
|
export interface NoticeOfProtestClientInfo {
|
5
|
+
NoticeOfProtestSteper?: NoticeOfProtestSteper[];
|
4
6
|
AdditionalAccount?: string;
|
5
7
|
CCCTemplateData?: CCCTemplateData;
|
6
|
-
|
8
|
+
ClientInputFormSteper?: ClientInputFormSteper[];
|
9
|
+
}
|
10
|
+
|
11
|
+
export interface NoticeOfProtestSteper {
|
12
|
+
Name: string;
|
13
|
+
IsCompleted: boolean;
|
14
|
+
}
|
15
|
+
|