spartaxx.businessmodels 1.0.178 → 1.0.180
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCTemplateData.ts +3 -0
- package/package.json +1 -1
package/CCC/CCCTemplateData.ts
CHANGED
@@ -1,9 +1,12 @@
|
|
1
1
|
import { ClientInfo } from "./ClientInfo";
|
2
2
|
import { QualifiedClientInfo } from "./QualifiedClientInfo";
|
3
3
|
import { AppConfigHub } from "../Common/AppConfigHub";
|
4
|
+
import { RabbitMQQueueInfo } from "../Common/RabbitMQQueueInfo";
|
4
5
|
|
5
6
|
export interface CCCTemplateData {
|
6
7
|
QualifiedClientInfo?: QualifiedClientInfo;
|
7
8
|
ClientInfo?: ClientInfo;
|
8
9
|
AppConfigHub?: AppConfigHub;
|
10
|
+
DocumentsTempPath?: string[];
|
11
|
+
RabbitMQQueueInfo?: RabbitMQQueueInfo;
|
9
12
|
}
|