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