Files
ha-bridge/src/main/java/com/bwssystems/HABridge/plugins/openhab/Option.java
2017-12-14 14:54:50 -06:00

33 lines
578 B
Java

package com.bwssystems.HABridge.plugins.openhab;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Option {
@SerializedName("value")
@Expose
private String value;
@SerializedName("label")
@Expose
private String label;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}