package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class TextColor implements Serializable {
|
@Expose
|
String color;
|
@Expose
|
String content;
|
@Expose
|
String bottomColor;
|
@Expose
|
String img;
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public String getColor() {
|
return color;
|
}
|
|
public void setColor(String color) {
|
this.color = color;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getBottomColor() {
|
return bottomColor;
|
}
|
|
public void setBottomColor(String bottomColor) {
|
this.bottomColor = bottomColor;
|
}
|
}
|