NewPipeExtractor/playlist/PlaylistInfoItem.java
Mauricio Colli b1989c0a83 Fix dash parser and more refactor
- Add new itags
2017-07-11 11:42:38 -03:00

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);
}
}