From 99bc815e07e39354f51421b77f4012ffd35594d8 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 28 六月 2023 18:03:00 +0800
Subject: [PATCH] 2023年06月28日18:02:58

---
 HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/eventbus/EventIRCodeStudySuccessInfo.java |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/eventbus/EventIRCodeStudySuccessInfo.java b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/eventbus/EventIRCodeStudySuccessInfo.java
new file mode 100644
index 0000000..bf18b72
--- /dev/null
+++ b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/eventbus/EventIRCodeStudySuccessInfo.java
@@ -0,0 +1,36 @@
+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 EventIRCodeStudySuccessInfo implements Serializable {
+    private String topic;
+    private String content;
+
+    public EventIRCodeStudySuccessInfo(String topic, String content) {
+        this.topic = topic;
+        this.content = content;
+    }
+
+    public String getTopic() {
+        return topic == null ? "" : topic;
+    }
+
+    public void setTopic(@NonNull String topic) {
+        this.topic = topic;
+    }
+
+    public String getContent() {
+        return content == null ? "" : content;
+    }
+
+    public void setContent(@NonNull String content) {
+        this.content = content;
+    }
+}
\ No newline at end of file

--
Gitblit v1.8.0