NewPipeExtractor/src/main/java/org/schabi/newpipe/extractor/playlist/PlaylistInfoItem.java

17 lines
347 B
Java

package org.schabi.newpipe.extractor.playlist;
import org.schabi.newpipe.extractor.InfoItem;
public class PlaylistInfoItem extends InfoItem {
public String thumbnail_url;
/**
* How many streams this playlist have
*/
public long streams_count = 0;
public PlaylistInfoItem() {
super(InfoType.PLAYLIST);
}
}