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;
|
}
|
}
|