LiveDetail.java 1.54 KB
package com.cnlive.goldenline.model;

import android.support.annotation.NonNull;

import com.cnlive.goldenline.ui.model.ErrorMessage;

import java.util.List;

/**
 * Created by zuoxian on 2015/9/17.
 */
public class LiveDetail extends ErrorMessage {
    private String cId;
    private String cName;
    private String imageUrl;
    private String playedCount;
    private List<LiveDetailSourceItem> videoSource;



    public String getcId() {
        return cId;
    }

    public void setcId(String cId) {
        this.cId = cId;
    }

    public String getcName() {
        return cName;
    }

    public void setcName(String cName) {
        this.cName = cName;
    }

    public String getImageUrl() {
        return imageUrl;
    }

    public void setImageUrl(String imageUrl) {
        this.imageUrl = imageUrl;
    }

    public String getPlayedCount() {
        return playedCount;
    }

    public void setPlayedCount(String playedCount) {
        this.playedCount = playedCount;
    }

    public List<LiveDetailSourceItem> getVideoSource() {
        return videoSource;
    }

    public void setVideoSource(List<LiveDetailSourceItem> videoSource) {
        this.videoSource = videoSource;
    }

    @NonNull
    @Override
    public String toString() {
        return "LiveDetail{" +
                "cId='" + cId + '\'' +
                ", cName='" + cName + '\'' +
                ", imageUrl='" + imageUrl + '\'' +
                ", playedCount='" + playedCount + '\'' +
                ", videoSource=" + videoSource +
                '}';
    }
}