mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-07 03:14:17 +02:00
Moved field downloadLocation to abstract Connector class.
This commit is contained in:
@ -5,7 +5,12 @@ namespace Tranga;
|
||||
|
||||
public abstract class Connector
|
||||
{
|
||||
internal abstract string downloadLocation { get; }
|
||||
public Connector(string downloadLocation)
|
||||
{
|
||||
this.downloadLocation = downloadLocation;
|
||||
}
|
||||
|
||||
internal string downloadLocation { get; }
|
||||
public abstract string name { get; }
|
||||
public abstract Publication[] GetPublications(string publicationTitle = "");
|
||||
public abstract Chapter[] GetChapters(Publication publication, string language = "");
|
||||
|
Reference in New Issue
Block a user