JLChen
2020-02-28 52f8575a2fa0590c28b5d784399c51a8af2f790a
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 Tommy on 2017/10/16.
 */
 
public class SceneInfoEvent {
    public List<DevicesData> desDataList;
    public boolean isSuccess;
 
    public SceneInfoEvent(List<DevicesData> desDataList,boolean isSuccess){
        this.desDataList = desDataList;
        this.isSuccess = isSuccess;
    }
 
    public SceneInfoEvent(boolean isSuccess){
        this.isSuccess = isSuccess;
    }
 
    public boolean isSuccess() {
        return isSuccess;
    }
 
 
    public List<DevicesData> getDesDataList() {
        return desDataList;
    }
}