package com.hdl.sdk.hdl_core.HDLDeviceManger.EventBusEvent; import com.hdl.sdk.hdl_core.HDLAppliances.HDLCommonSwitch.CommonSwitchBackInfo; /** * Created by jlchen on 2020-04-01. */ public class CommonSwitchCtrlBackEvent { CommonSwitchBackInfo mCommonSwitchBackInfo; boolean isSuccess; public CommonSwitchCtrlBackEvent(CommonSwitchBackInfo commonSwitchBackInfo, boolean isSuccess){ this.isSuccess = isSuccess; this.mCommonSwitchBackInfo = commonSwitchBackInfo; } public CommonSwitchBackInfo getCommonSwitchBackInfo() { return mCommonSwitchBackInfo; } public boolean isSuccess() { return isSuccess; } }