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