package com.hdl.sdk.hdl_core.HDLDeviceManger.EventBusEvent;
|
|
import com.hdl.sdk.hdl_core.HDLAppliances.HDLGeothermal.GeothermalBackInfo;
|
|
/**
|
* Created by JLChen on 2019/7/10
|
* 地热模块
|
*/
|
public class GeothermalFeedBackEvent {
|
|
GeothermalBackInfo mGeothermalBackInfo;
|
|
boolean isSuccess;
|
|
public GeothermalFeedBackEvent( GeothermalBackInfo geothermalBackInfo, boolean isSuccess){
|
this.mGeothermalBackInfo = geothermalBackInfo;
|
this.isSuccess = isSuccess;
|
}
|
|
public GeothermalBackInfo getGeothermalBackInfo() {
|
return mGeothermalBackInfo;
|
}
|
|
public boolean isSuccess() {
|
return isSuccess;
|
}
|
}
|