spartaxx.businessmodels 1.0.30 → 1.0.32
Sign up to get free protection for your applications and to get access to all the features.
package/Protest/ProtestModels.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ProtestDocuments } from "./ProtestDocuments";
|
2
2
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
3
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
4
|
-
import {
|
4
|
+
import { ProtestingAccounts } from "./ProtestingAccounts";
|
5
5
|
|
6
|
-
export {ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo,
|
6
|
+
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export interface
|
1
|
+
export interface ProtestingAccounts {
|
2
2
|
CountyId: number;
|
3
3
|
CountyName: string;
|
4
4
|
AccountId: number;
|
@@ -7,4 +7,5 @@ export interface ProtestAccountsCountywise {
|
|
7
7
|
TotalAccounts: number;
|
8
8
|
TotalResidentialAccounts: number;
|
9
9
|
TotalCommericalAccounts: number;
|
10
|
+
TotalRecordCount: number;
|
10
11
|
}
|
package/package.json
CHANGED
File without changes
|