Added download cover functionality

This commit is contained in:
glax
2023-05-18 19:56:06 +02:00
parent f92bcebe04
commit c283cbd9a9
3 changed files with 22 additions and 2 deletions

View File

@ -16,6 +16,7 @@ public abstract class Connector
public abstract Chapter[] GetChapters(Publication publication, string language = "");
public abstract void DownloadChapter(Publication publication, Chapter chapter); //where to?
protected abstract void DownloadImage(string url, string savePath);
public abstract void DownloadCover(Publication publication);
internal void DownloadChapter(string[] imageUrls, string saveArchiveFilePath)
{