package com.hdl.sdk.ttl.HDLDeviceManger.EventBusEvent;
|
|
import com.hdl.sdk.ttl.HDLAppliances.HDLAirCondition.AirTechSysBackInfo;
|
|
/**
|
* Created by panlili on 2023/8/21
|
*/
|
public class AirTechSysFeedBackEvent {
|
AirTechSysBackInfo mAirTechSysBackInfo;
|
boolean isSuccess;
|
|
public AirTechSysFeedBackEvent(AirTechSysBackInfo airTechSysBackInfo, boolean isSuccess){
|
this.mAirTechSysBackInfo = airTechSysBackInfo;
|
this.isSuccess = isSuccess;
|
}
|
|
public AirTechSysBackInfo getAirTechSysBackInfo() {
|
return mAirTechSysBackInfo;
|
}
|
|
public void setAirTechSysBackInfo(AirTechSysBackInfo mAirTechSysBackInfo) {
|
this.mAirTechSysBackInfo = mAirTechSysBackInfo;
|
}
|
|
public boolean isSuccess() {
|
return isSuccess;
|
}
|
}
|