spartaxx.businessmodels 1.0.48 → 1.0.49
Sign up to get free protection for your applications and to get access to all the features.
package/Common/PdfExport.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
export interface DatasetSortingOperation {
|
2
2
|
Id: number;
|
3
3
|
ModelPropertyName: string;
|
4
|
-
Query:string;
|
5
|
-
Order:number;
|
6
|
-
DataSetId:number;
|
4
|
+
Query: string;
|
5
|
+
Order: number;
|
6
|
+
DataSetId: number;
|
7
7
|
IsInActive: boolean;
|
8
8
|
IsSelected: boolean;
|
9
9
|
SortingType: String;
|
@@ -2,9 +2,9 @@ import { DatasetSortingOperation } from "Masters/DatasetSortingOperation";
|
|
2
2
|
import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
|
3
3
|
|
4
4
|
export interface ProtestingAccounts {
|
5
|
-
ProtestingAccountInputParam:ProtestingAccountInfo;
|
5
|
+
ProtestingAccountInputParam: ProtestingAccountInfo;
|
6
6
|
OffsetValue: number;
|
7
|
-
FetchRecordsCounts: number;
|
7
|
+
FetchRecordsCounts: number;
|
8
8
|
ProtestingAccountInfo: ProtestingAccountInfo[];
|
9
9
|
TotalRecords: number;
|
10
10
|
DatasetSortingOperation: DatasetSortingOperation
|