mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 00:10:20 +00:00
20 lines
368 B
Java
20 lines
368 B
Java
package com.bwssystems.HABridge.plugins.openhab;
|
|
|
|
public class OpenHABCommand {
|
|
private String url;
|
|
private String command;
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
public String getCommand() {
|
|
return command;
|
|
}
|
|
public void setCommand(String command) {
|
|
this.command = command;
|
|
}
|
|
|
|
}
|