mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-13 22:00:32 +05:30
10 lines
321 B
Java
10 lines
321 B
Java
package org.schabi.newpipe.extractor.playlist;
|
|
|
|
import org.schabi.newpipe.extractor.exceptions.ParsingException;
|
|
|
|
public interface PlayListInfoItemExtractor {
|
|
String getThumbnailUrl() throws ParsingException;
|
|
String getPlayListName() throws ParsingException;
|
|
String getWebPageUrl() throws ParsingException;
|
|
}
|