spartaxx.businessmodels 1.0.205 → 1.0.206
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,6 +4,7 @@ import {
|
|
4
4
|
DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
|
5
5
|
ApiMasterDatasetColumns
|
6
6
|
} from "../Masters/MasterModels";
|
7
|
+
import { ProtestingAccountInfo } from "../Protest/ProtestingAccountInfo";
|
7
8
|
|
8
9
|
export interface QualifiedClientResults {
|
9
10
|
TotalRecords?: number;
|
@@ -24,4 +25,11 @@ export interface QualifiedClientResults {
|
|
24
25
|
IsShowCriteriaTextbox?: boolean;
|
25
26
|
CriteriaName?: string;
|
26
27
|
FilterCriteriaSelectedValue?: ManageCampaignCriteriaLookup | null;
|
28
|
+
|
29
|
+
TotalCounties?: number;
|
30
|
+
TotalAccounts?: number;
|
31
|
+
TotalEmailModeCounties?: number;
|
32
|
+
TotalUSmailModeCounties?: number;
|
33
|
+
TotalOnlinePortalModeCounties?: number;
|
34
|
+
ProtestingAccountInfo?: ProtestingAccountInfo[];
|
27
35
|
}
|