homecontrol-control-base/states/SwitchState.js
2019-01-25 16:14:16 +01:00

15 lines
202 B
JavaScript

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