package com.hdl.sdk.ttl.HDLDeviceManger.EventBusEvent;
|
|
|
import com.hdl.sdk.ttl.HDLDeviceManger.Bean.ScenesData;
|
|
import java.util.List;
|
|
/**
|
* Created by panlili on 2024/01/18.
|
*/
|
|
public class ScenesInfoEvent {
|
public List<ScenesData> desSceneList;
|
public boolean isSuccess;
|
|
public ScenesInfoEvent(List<ScenesData> desSceneList, boolean isSuccess) {
|
this.desSceneList = desSceneList;
|
this.isSuccess = isSuccess;
|
}
|
|
public ScenesInfoEvent(boolean isSuccess) {
|
this.isSuccess = isSuccess;
|
}
|
|
|
public boolean isSuccess() {
|
return isSuccess;
|
}
|
|
public List<ScenesData> getDesSceneList() {
|
return desSceneList;
|
}
|
}
|