mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
21 lines
421 B
Java
21 lines
421 B
Java
package com.bwssytems.HABridge.api.hue;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.bwssytems.HABridge.api.hue.DeviceResponse;
|
|
|
|
/**
|
|
* Created by arm on 4/14/15.
|
|
*/
|
|
public class HueApiResponse {
|
|
private Map<String, DeviceResponse> lights;
|
|
|
|
public Map<String, DeviceResponse> getLights() {
|
|
return lights;
|
|
}
|
|
|
|
public void setLights(Map<String, DeviceResponse> lights) {
|
|
this.lights = lights;
|
|
}
|
|
}
|