Beta impl of LIFX complete

This commit is contained in:
Admin
2017-02-02 11:00:50 -06:00
parent 16a248ba8e
commit c679548bbd
20 changed files with 169 additions and 17 deletions

View File

@@ -3,6 +3,7 @@ package com.bwssystems.HABridge.plugins.lifx;
public class LifxEntry {
private String name;
private String id;
private String type;
public String getName() {
return name;
}
@@ -15,4 +16,10 @@ public class LifxEntry {
public void setId(String id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}