diff --git a/Tranga/Connector.cs b/Tranga/Connector.cs index 812a146..399b42f 100644 --- a/Tranga/Connector.cs +++ b/Tranga/Connector.cs @@ -5,9 +5,9 @@ namespace Tranga; public abstract class Connector { public abstract string name { get; } - public abstract bool GetPublications(out Publication[] publications); - public abstract bool GetChapters(Publication publication, out Chapter[] chapters); - public abstract bool DownloadChapter(Chapter chapter); //where to? + public abstract Publication[] GetPublications(); + public abstract Chapter[] GetChapters(Publication publication); + public abstract void DownloadChapter(Chapter chapter); //where to? internal class DownloadClient {