mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-26 02:21:08 +00:00
33 lines
578 B
Java
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;
|
|
}
|
|
|
|
}
|