mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-13 05:40:34 +05:30
b1989c0a83
- Add new itags
17 lines
347 B
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);
|
|
}
|
|
}
|