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
29
30
31
32
33
package com.hdl.sdk.hdl_core.HDLDeviceManger.EventBusEvent;
 
 
import com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.DevicesData;
 
import java.util.List;
 
/**
 * Created by djl on 2017/3/27.
 */
 
public class DevicesInfoEvent {
    public List<DevicesData> desDataList;
    public boolean isSuccess;
 
    public DevicesInfoEvent(List<DevicesData> desDataList,boolean isSuccess){
        this.desDataList = desDataList;
        this.isSuccess = isSuccess;
    }
 
    public DevicesInfoEvent(boolean isSuccess){
        this.isSuccess = isSuccess;
    }
 
 
    public boolean isSuccess() {
        return isSuccess;
    }
 
    public List<DevicesData> getDesDataList() {
        return desDataList;
    }
}