spartaxx.businessmodels 1.0.366 → 1.0.369
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
3
|
-
import { ClientInputFormSteper } from "./ClientInputForm";
|
3
|
+
import { ClientInputFormSteper, ClientInputForm } from "./ClientInputForm";
|
4
4
|
|
5
5
|
export interface ClientPackageParam {
|
6
6
|
gUId?: string;
|
@@ -19,6 +19,7 @@ export interface ClientPackageParam {
|
|
19
19
|
|
20
20
|
TeamplateId?: string;
|
21
21
|
DocumentList?: ClientPackageDocument[];
|
22
|
-
ClientInputFormSteper?:ClientInputFormSteper[];
|
22
|
+
ClientInputFormSteper?: ClientInputFormSteper[];
|
23
23
|
ItIsCCCBlastPcakge?: boolean;
|
24
|
+
ClientInputForm?: ClientInputForm;
|
24
25
|
}
|