mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
request with UDP and also added the value replacement for dimming, this needs to be tested.
19 lines
342 B
Java
19 lines
342 B
Java
package com.bwssystems.HABridge.api;
|
|
|
|
public class NameValue {
|
|
private String name;
|
|
private String value;
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
}
|