package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class MessageContent implements Serializable {
|
@Expose
|
TextColor title;
|
@Expose
|
List<TextColor> content;
|
@Expose
|
boolean click;
|
|
public boolean isClick() {
|
return click;
|
}
|
|
public void setClick(boolean click) {
|
this.click = click;
|
}
|
|
public TextColor getTitle() {
|
return title;
|
}
|
|
public void setTitle(TextColor title) {
|
this.title = title;
|
}
|
|
public List<TextColor> getContent() {
|
return content;
|
}
|
|
public void setContent(List<TextColor> content) {
|
this.content = content;
|
}
|
}
|