@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
27 lines • 674 B
JavaScript
;
/**
* @author Javen
* @copyright javendev@126.com
* @description 菜单二维码扫描的结果
*/
Object.defineProperty(exports, "__esModule", { value: true });
class ScanCodeInfo {
constructor(scanType, scanResult) {
this.ScanType = scanType;
this.ScanResult = scanResult;
}
get getScanType() {
return this.ScanType;
}
set setScanType(scanType) {
this.ScanType = scanType;
}
get getScanResult() {
return this.ScanResult;
}
set setScanResult(scanResult) {
this.ScanResult = scanResult;
}
}
exports.ScanCodeInfo = ScanCodeInfo;
//# sourceMappingURL=ScanCodeInfo.js.map