package com.hdl.sdk.link.bean;
|
|
import java.io.Serializable;
|
|
import androidx.annotation.NonNull;
|
|
/**
|
* Created by Zoro
|
* Created on 2022/7/29
|
* description:
|
*/
|
public class NoticeConfigInfo implements Serializable {
|
private boolean enable;
|
private String noticeContent;
|
|
public boolean isEnable() {
|
return enable;
|
}
|
|
public void setEnable(@NonNull boolean enable) {
|
this.enable = enable;
|
}
|
|
public String getNoticeContent() {
|
return noticeContent == null ? "" : noticeContent;
|
}
|
|
public void setNoticeContent(@NonNull String noticeContent) {
|
this.noticeContent = noticeContent;
|
}
|
}
|