admin
2019-03-12 4714dbbf7ead9e24f18a295890bdf5e75da991da
fanli/src/main/java/com/yeshi/fanli/vo/msg/ClientTextStyleVO.java
@@ -1,8 +1,15 @@
package com.yeshi.fanli.vo.msg;
import com.google.gson.annotations.Expose;
public class ClientTextStyleVO {
   @Expose
   private String content;
   @Expose
   private String color;
   @Expose
   private String bottomColor;
   @Expose
   private String img;
   public ClientTextStyleVO(String content, String color) {
@@ -46,4 +53,12 @@
   public void setColor(String color) {
      this.color = color;
   }
   public String getBottomColor() {
      return bottomColor;
   }
   public void setBottomColor(String bottomColor) {
      this.bottomColor = bottomColor;
   }
}