1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.hdl.sdk.hdl_core.HDLDeviceManger.EventBusEvent;
 
 
import com.hdl.sdk.hdl_core.HDLAppliances.HDLLight.LightCtrlBackInfo;
 
/**
 * Created by djl on 2017/4/5.
 */
 
public class LightFeedBackEvent {
    LightCtrlBackInfo lightCtrlBackInfo;
    boolean isSuccess;
 
    public LightFeedBackEvent(LightCtrlBackInfo lightCtrlBackInfo,boolean isSuccess){
        this.isSuccess = isSuccess;
        this.lightCtrlBackInfo = lightCtrlBackInfo;
    }
 
 
 
    public boolean isSuccess() {
        return isSuccess;
    }
 
    public LightCtrlBackInfo getLightCtrlBackInfo() {
        return lightCtrlBackInfo;
    }
}