first commit

This commit is contained in:
编码猿
2024-09-27 00:58:46 +08:00
commit 92916abf8f
156 changed files with 19331 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ajaxModel = void 0;
var AjaxModel = /** @class */ (function () {
function AjaxModel() {
}
Object.defineProperty(AjaxModel.prototype, "urlModelContainer", {
get: function () {
return this._urlModelContainer;
},
set: function (AjaxUrl) {
this._urlModelContainer = AjaxUrl;
},
enumerable: false,
configurable: true
});
Object.defineProperty(AjaxModel.prototype, "AjaxModelContainer", {
get: function () {
return this._AjaxModelContainer;
},
set: function (AjaxObjecy) {
this._AjaxModelContainer = AjaxObjecy;
},
enumerable: false,
configurable: true
});
return AjaxModel;
}());
exports.ajaxModel = new AjaxModel();