package com.yeshi.video.entity;
|
|
import com.yeshi.base.entity.video.PlayUrl;
|
import com.yeshi.base.entity.video.VideoInfo;
|
|
//风行播放器需要的信息
|
public class FunshionPlayInfo {
|
private VideoInfo videoInfo;
|
private int position;
|
private PlayUrl playUrl;
|
private boolean collected;
|
|
public int getPosition() {
|
return position;
|
}
|
|
public void setPosition(int position) {
|
this.position = position;
|
}
|
|
public VideoInfo getVideoInfo() {
|
return videoInfo;
|
}
|
|
public void setVideoInfo(VideoInfo videoInfo) {
|
this.videoInfo = videoInfo;
|
}
|
|
public PlayUrl getPlayUrl() {
|
return playUrl;
|
}
|
|
public void setPlayUrl(PlayUrl playUrl) {
|
this.playUrl = playUrl;
|
}
|
|
public boolean isCollected() {
|
return collected;
|
}
|
|
public void setCollected(boolean collected) {
|
this.collected = collected;
|
}
|
}
|