Add field "url" to Chapter to know where to download.

This commit is contained in:
glax
2023-05-18 16:21:21 +02:00
parent 317d1435f3
commit d13a7c3e49
2 changed files with 6 additions and 2 deletions

View File

@ -6,12 +6,14 @@ public struct Chapter
public string? name { get; }
public string? volumeNumber { get; }
public string? chapterNumber { get; }
public string url { get; }
public Chapter(Publication publication, string? name, string? volumeNumber, string? chapterNumber)
public Chapter(Publication publication, string? name, string? volumeNumber, string? chapterNumber, string url)
{
this.publication = publication;
this.name = name;
this.volumeNumber = volumeNumber;
this.chapterNumber = chapterNumber;
this.url = url;
}
}