admin
2019-02-26 4fe5f879c1b2919099a6e193ab4db8d25725ca40
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;
   }
}