Sign in

CNLive Android Team / CNVideoDemo · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CNVideoDemo
  • ..
  • barrage
  • ChatMessage.java
  • 提交demo
    0ac7070d
    谷俊 authored
    2016-09-07 12:39:42 +0800  
    Browse Code »
ChatMessage.java 270 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.cnlive.demo.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;
    }
}