spartaxx.businessmodels 1.0.322 → 1.0.323
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
+
|