PlayLiveUrl.java
641 Bytes
package com.cnlive.goldenline.model;
import android.support.annotation.NonNull;
import java.io.Serializable;
import java.util.List;
/**
* @创建者 xk
* @创建时间 2016/8/1811:56
* @描述 ${TODO}
*/
public class PlayLiveUrl implements Serializable {
public List<PlayUrlTypeItem> playUrl;
public List<PlayUrlTypeItem> getPlayUrl() {
return playUrl;
}
public void setPlayUrl(List<PlayUrlTypeItem> playUrl) {
this.playUrl = playUrl;
}
@NonNull
@Override
public String toString() {
return "PlayLiveUrl{" +
"playUrl=" + playUrl +
'}';
}
}