mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
33 lines
669 B
Java
33 lines
669 B
Java
package com.bwssystems.HABridge.plugins.hass;
|
|
|
|
public class HassCommand {
|
|
private String entityId;
|
|
private String hassName;
|
|
private String state;
|
|
private String bri;
|
|
public String getEntityId() {
|
|
return entityId;
|
|
}
|
|
public void setEntityId(String entityId) {
|
|
this.entityId = entityId;
|
|
}
|
|
public String getHassName() {
|
|
return hassName;
|
|
}
|
|
public void setHassName(String hassName) {
|
|
this.hassName = hassName;
|
|
}
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
public String getBri() {
|
|
return bri;
|
|
}
|
|
public void setBri(String bri) {
|
|
this.bri = bri;
|
|
}
|
|
}
|