spartaxx.businessmodels 1.0.52 → 1.0.53
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,12 @@
|
|
1
|
+
import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
|
2
|
+
import { DatasetFilterOperation } from "Masters/DatasetFilterOperation";
|
1
3
|
import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
2
4
|
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
3
5
|
|
4
6
|
export interface ProtestingAccounts {
|
5
7
|
TotalRecords: number;
|
6
8
|
ProtestingAccountInfo: ProtestingAccountInfo[];
|
7
|
-
|
9
|
+
DatasetSelectOperation: DatasetSelectOperation[];
|
10
|
+
DatasetFilterOperation: DatasetFilterOperation[];
|
11
|
+
DatasetSortingOperation: DatasetSortingOperation[];
|
8
12
|
}
|