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