Comitinue refactor of huemulator

This commit is contained in:
Admin
2016-12-21 17:06:30 -06:00
parent 2579949a23
commit b5a3bea803
8 changed files with 799 additions and 592 deletions

View File

@@ -0,0 +1,22 @@
package com.bwssystems.HABridge.hue;
public class MultiCommandUtil {
private Integer setCount;
private Integer theDelay;
public Integer getSetCount() {
return setCount;
}
public void setSetCount(Integer setCount) {
this.setCount = setCount;
}
public Integer getTheDelay() {
return theDelay;
}
public void setTheDelay(Integer theDelay) {
this.theDelay = theDelay;
}
}