VideoModel.java 919 Bytes
package com.cnlive.gundam.video.model;

/**
 * Created by gujun on 2017/4/28.
 */

public class VideoModel {

    private String title;
    private String id;
    private String type;
    private String rates;

    public VideoModel(String title, String id, String type, String rates) {
        this.title = title;
        this.id = id;
        this.type = type;
        this.rates = rates;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getType() {
        return type;
    }

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

    public String getRates() {
        return rates;
    }

    public void setRates(String rates) {
        this.rates = rates;
    }
}