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
  • ..
  • model
  • LiveInfo.java
  • 添加获取直播活动信息接口demo
    04011cb8
    王琳 authored
    2017-06-21 10:00:52 +0800  
    Browse Code »
LiveInfo.java 308 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.cnlive.demo.video.model;

import com.cnlive.libs.video.model.ErrorMessage;

public class LiveInfo extends ErrorMessage {
    private LiveInfoData data;

    public LiveInfoData getData() {
        return data;
    }

    public void setData(LiveInfoData data) {
        this.data = data;
    }
}