wjc
2024-12-23 f753d8366041354da60b8096060f3ab5159e3880
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;
    }
}