@aecworks/bimbox-bimserver-sdk-js
Version:
AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言
14 lines • 471 B
JavaScript
import { FilePageModel } from '../model/file';
var FilePageProxy = /** @class */ (function () {
function FilePageProxy(responseDate) {
this.filePage = new FilePageModel();
var data = responseDate;
Object.assign(this.filePage, data);
}
FilePageProxy.prototype.getModel = function () {
return this.filePage;
};
return FilePageProxy;
}());
export { FilePageProxy };
//# sourceMappingURL=file-page-proxy.js.map