package com.hdl.sdk.ttl.HDLDeviceManger.EventBusEvent;
|
|
|
import com.hdl.sdk.ttl.HDLAppliances.HDLLogic.SceneCtrlBackInfo;
|
|
/**
|
* Created by panlili on 2024/1/19.
|
*/
|
|
public class SceneFeedBackEvent {
|
SceneCtrlBackInfo sceneCtrlBackInfo;
|
boolean isSuccess;
|
|
public SceneFeedBackEvent(SceneCtrlBackInfo sceneCtrlBackInfo, boolean isSuccess){
|
this.isSuccess = isSuccess;
|
this.sceneCtrlBackInfo = sceneCtrlBackInfo;
|
}
|
|
public boolean isSuccess() {
|
return isSuccess;
|
}
|
|
public SceneCtrlBackInfo getSceneCtrlBackInfo() {
|
return sceneCtrlBackInfo;
|
}
|
|
public void setSceneCtrlBackInfo(SceneCtrlBackInfo sceneCtrlBackInfo) {
|
this.sceneCtrlBackInfo = sceneCtrlBackInfo;
|
}
|
}
|