package com.hdl.sdk.hdl_core.HDLDeviceManger.EventBusEvent; import com.hdl.sdk.hdl_core.HDLAppliances.HDLSecurity.SecurityBackInfo; /** * Created by JLChen on 2019/7/29 */ public class SecurityAlarmFeedBackEvent { SecurityBackInfo mSecurityBackInfo; boolean isSuccess; public SecurityAlarmFeedBackEvent(SecurityBackInfo securityBackInfo, boolean isSuccess){ this.mSecurityBackInfo = securityBackInfo; this.isSuccess = isSuccess; } public SecurityBackInfo getSecurityBackInfo() { return mSecurityBackInfo; } public boolean isSuccess() { return isSuccess; } }