1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-07-09 22:55:23 +02:00

Moved files

Added DownloadClient to Connector
This commit is contained in:
glax
2023-05-18 12:26:15 +02:00
parent 45713b868d
commit d6ec91c896
8 changed files with 36 additions and 10 deletions

22
Tranga/Chapter.cs Normal file

@ -0,0 +1,22 @@
namespace Tranga;
public struct Chapter
{
public Publication publication { get; }
public string name { get; }
public uint volumeNumber { get; }
public uint chapterNumber { get; }
public string summary { get; }
public string posterUrl { get; }//Better way?
public Chapter(Publication publication, string name, uint volumeNumber, uint chapterNumber, string summary,
string posterUrl)
{
this.publication = publication;
this.name = name;
this.volumeNumber = volumeNumber;
this.chapterNumber = chapterNumber;
this.summary = summary;
this.posterUrl = posterUrl;
}
}