const BaseState = require('./BaseState'); class SwitchState extends BaseState { constructor() { this.on = false; } get asObj() { return { on: this.on }; } } module.exports = SwitchState;