2017-03-12 20:45:51 +05:30
|
|
|
package org.schabi.newpipe.extractor.playlist;
|
|
|
|
|
|
|
|
import org.schabi.newpipe.extractor.InfoItem;
|
|
|
|
|
2017-06-29 23:42:55 +05:30
|
|
|
public class PlaylistInfoItem implements InfoItem {
|
2017-03-12 20:45:51 +05:30
|
|
|
|
|
|
|
public int serviceId = -1;
|
|
|
|
public String name = "";
|
|
|
|
public String thumbnailUrl = "";
|
|
|
|
public String webPageUrl = "";
|
|
|
|
|
|
|
|
public InfoType infoType() {
|
|
|
|
return InfoType.PLAYLIST;
|
|
|
|
}
|
2017-06-29 23:42:55 +05:30
|
|
|
|
2017-03-12 20:45:51 +05:30
|
|
|
public String getTitle() {
|
|
|
|
return name;
|
|
|
|
}
|
2017-06-29 23:42:55 +05:30
|
|
|
|
2017-03-12 20:45:51 +05:30
|
|
|
public String getLink() {
|
|
|
|
return webPageUrl;
|
|
|
|
}
|
|
|
|
}
|