mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
39 lines
960 B
Java
39 lines
960 B
Java
package com.bwssystems.HABridge.plugins.domoticz;
|
|
|
|
public class DomoticzDevice {
|
|
private String devicetype;
|
|
private String devicename;
|
|
private String idx;
|
|
private String domoticzaddress;
|
|
private String domoticzname;
|
|
public String getDevicetype() {
|
|
return devicetype;
|
|
}
|
|
public void setDevicetype(String devicetype) {
|
|
this.devicetype = devicetype;
|
|
}
|
|
public String getDevicename() {
|
|
return devicename;
|
|
}
|
|
public void setDevicename(String devicename) {
|
|
this.devicename = devicename;
|
|
}
|
|
public String getIdx() {
|
|
return idx;
|
|
}
|
|
public void setIdx(String idx) {
|
|
this.idx = idx;
|
|
}
|
|
public String getDomoticzaddress() {
|
|
return domoticzaddress;
|
|
}
|
|
public void setDomoticzaddress(String domoticzaddress) {
|
|
this.domoticzaddress = domoticzaddress;
|
|
}
|
|
public String getDomoticzname() {
|
|
return domoticzname;
|
|
}
|
|
public void setDomoticzname(String domoticzname) {
|
|
this.domoticzname = domoticzname;
|
|
}
|
|
} |