@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
22 lines • 470 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class MenuMsg {
constructor(id, content) {
this.id = id;
this.content = content;
}
get getId() {
return this.id;
}
set setId(id) {
this.id = id;
}
get getContent() {
return this.content;
}
set setContent(content) {
this.content = content;
}
}
exports.MenuMsg = MenuMsg;
//# sourceMappingURL=MenuMsg.js.map