mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-06-12 06:47:53 +02:00
Add field downloadLocation to Connector to save archives.
This commit is contained in:
@ -5,12 +5,14 @@ namespace Tranga.Connectors;
|
||||
|
||||
public class MangaDex : Connector
|
||||
{
|
||||
internal override string downloadLocation { get; }
|
||||
public override string name { get; }
|
||||
private DownloadClient _downloadClient = new ();
|
||||
|
||||
public MangaDex()
|
||||
public MangaDex(string downloadLocation)
|
||||
{
|
||||
name = "MangaDex.org";
|
||||
this.downloadLocation = downloadLocation;
|
||||
}
|
||||
|
||||
public override Publication[] GetPublications()
|
||||
|
Reference in New Issue
Block a user