Sign in

CNLive Android Team / CNLiveApp · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CNLiveApp
  • ..
  • barrage
  • ChatMessage.java
  • 添加弹幕
    a4720b91
    陈硕 authored
    2017-06-29 19:29:54 +0800  
    Browse Code »
ChatMessage.java 272 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.cnlive.gundam.video.barrage;

/**
 * Created by xiansong on 2016/8/5.
 */
public class ChatMessage {
    protected String type;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }
}