wjc
2023-06-28 989b4cf5a84e898e9682f8d9723a8ba1ff20c23b
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
package com.hdl.sdk.link.core.bean.eventbus;
 
import java.io.Serializable;
 
import androidx.annotation.NonNull;
 
/**
 * Created by Zoro
 * Created on 2021/5/24
 * description:
 */
public class EventNotifyDebugModeInfo implements Serializable {
 
    private boolean isRemote;
 
    public boolean isRemote() {
        return isRemote;
    }
 
    public void setRemote(@NonNull boolean remote) {
        isRemote = remote;
    }
 
    public EventNotifyDebugModeInfo(boolean isRemote) {
        this.isRemote = isRemote;
    }
}