wjc
2023-06-28 14de918a79943e4961b09fa01ed320c6cad41f2e
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/eventbus/EventNotifyDebugModeInfo.java
New file
@@ -0,0 +1,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;
    }
}