spartaxx.businessmodels 1.0.163 → 1.0.165
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,27 +8,12 @@ export interface QualifiedClientInfo {
|
|
8
8
|
TaxYear?: number;
|
9
9
|
Mode?: string;
|
10
10
|
DeliveryAddress?: string;
|
11
|
-
|
12
|
-
IsNeedAgreement?: boolean;
|
13
|
-
IsAgreementGenerated?: boolean;
|
14
|
-
|
15
|
-
IsHomeStead?: boolean;
|
16
|
-
IsNeedAofAExpirtationForm?: boolean;
|
17
|
-
IsNeedAofAExpirtationFormGenerated?: boolean;
|
18
|
-
IsNeedConsentForm?: boolean;
|
19
|
-
IsNeedConsentFormGenerated?: boolean;
|
20
|
-
IsNeedAofA?: boolean;
|
21
|
-
IsNeedAofAGenerated?: boolean;
|
22
|
-
|
23
|
-
IsNeedBAAofA?: boolean;
|
24
|
-
IsNeedBAAofAGenerated?: boolean;
|
25
|
-
|
26
|
-
IsNeedPropertySurveyForm?: boolean;
|
27
|
-
IsNeedPropertySurveyFormGenerated?: boolean;
|
28
|
-
|
29
|
-
BlastStatusId?: number;
|
30
|
-
|
31
11
|
ResidentialAccounts?: number;
|
32
12
|
CommercialAccounts?: number;
|
33
13
|
TotalAccounts?: number;
|
14
|
+
BlastStatusId?: number;
|
15
|
+
Status?: string;
|
16
|
+
BlastDate?: string;
|
17
|
+
Documents?: string;
|
18
|
+
IsSelected?: boolean;
|
34
19
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -108,6 +108,28 @@ export interface AppConfigHub {
|
|
108
108
|
//#region External Params
|
109
109
|
|
110
110
|
UserId?: number;
|
111
|
+
|
112
|
+
//#endregion
|
113
|
+
|
114
|
+
//#region RabbitMQ Configuration
|
115
|
+
|
116
|
+
RMQConfigUserName?: string;
|
117
|
+
RMQConfigPassword?: string;
|
118
|
+
RMQConfigHost?: string;
|
119
|
+
RMQConfigPort?: string;
|
120
|
+
RMQConfigProtestCountyQueue?: string;
|
121
|
+
RMQConfigProtestLetterGenerationQueue?: string;
|
122
|
+
RMQConfigHB201ProtestLetterGenerationQueue?: string;
|
123
|
+
RMQConfigExcelfileGenerationQueue?: string;
|
124
|
+
RMQConfigCCCUSMailBlastQueue?: string;
|
125
|
+
RMQConfigCCCEmailBlastQueue?: string;
|
126
|
+
RMQConfigEmailSenderService?: string;
|
127
|
+
RMQConfigCCCResidentialCoverLetterService?: string;
|
128
|
+
RMQConfigCCCCommercialCoverLetterService?: string;
|
129
|
+
RMQConfigCCCContactForm?: string;
|
130
|
+
RMQConfigCCCAccountList?: string;
|
131
|
+
RMQConfigCCCReasons?: string;
|
111
132
|
|
112
133
|
//#endregion
|
134
|
+
|
113
135
|
}
|