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; } }