panlili2024
2024-09-19 071a8328823a2861f93ce556a4da3e4119cab1a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
    }
}