spartaxx.businessmodels 1.0.1 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/Masters/APIMaster.js +6 -0
- package/Masters/ApiMasterDatasetColumns.js +6 -0
- package/Masters/DataSetMaster.js +6 -0
- package/Masters/MasterModels.js +11 -0
- package/Protest/ProtestDocuments.js +6 -0
- package/Protest/ProtestHistoryInfo.js +6 -0
- package/Protest/ProtestModels.js +11 -0
- package/Protest/ProtestPropertyInfo.js +6 -0
- package/package.json +1 -1
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const APIMaster_1 = require("./APIMaster");
|
4
|
+
const ApiMasterDatasetColumns_1 = require("./ApiMasterDatasetColumns");
|
5
|
+
const DataSetMaster_1 = require("./DataSetMaster");
|
6
|
+
const MasterModels = {
|
7
|
+
APIMaster: APIMaster_1.APIMaster,
|
8
|
+
ApiMasterDetailsColumns: ApiMasterDatasetColumns_1.ApiMasterDetailsColumns,
|
9
|
+
DataSetMaster: DataSetMaster_1.DataSetMaster
|
10
|
+
};
|
11
|
+
exports.default = MasterModels;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const ProtestDocuments_1 = require("./ProtestDocuments");
|
4
|
+
const ProtestHistoryInfo_1 = require("./ProtestHistoryInfo");
|
5
|
+
const ProtestPropertyInfo_1 = require("./ProtestPropertyInfo");
|
6
|
+
const ProtestModels = {
|
7
|
+
ProtestDocuments: ProtestDocuments_1.ProtestDocuments,
|
8
|
+
ProtestHistoryInfo: ProtestHistoryInfo_1.ProtestHistoryInfo,
|
9
|
+
ProtestPropertyInfo: ProtestPropertyInfo_1.ProtestPropertyInfo
|
10
|
+
};
|
11
|
+
exports.default = ProtestModels;
|