com.qiniu.model.qdora.VideoTS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.model.qdora;
public class VideoTS {
private String url;
private float seconds;
public VideoTS(String url, float seconds) {
this.url = url;
this.seconds = seconds;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public float getSeconds() {
return seconds;
}
public void setSeconds(float seconds) {
this.seconds = seconds;
}
public String toString() {
return url + "\t" + seconds + "sec";
}
}