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 desDataList; public boolean isSuccess; public DevicesInfoEvent(List desDataList,boolean isSuccess){ this.desDataList = desDataList; this.isSuccess = isSuccess; } public DevicesInfoEvent(boolean isSuccess){ this.isSuccess = isSuccess; } public boolean isSuccess() { return isSuccess; } public List getDesDataList() { return desDataList; } }