msbot
Version:
MSBot command line tool for manipulating Microsoft Bot Framework .bot files
12 lines • 377 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ConnectedService {
constructor(source = {}) {
this.id = '';
this.name = '';
const { id = '', name = '' } = source;
Object.assign(this, { id, name });
}
}
exports.ConnectedService = ConnectedService;
//# sourceMappingURL=connectedService.js.map