2023-05-17 23:23:01 +02:00
|
|
|
|
namespace Tranga;
|
|
|
|
|
|
|
|
|
|
public struct Chapter
|
|
|
|
|
{
|
|
|
|
|
public Publication publication { get; }
|
2023-05-18 16:03:00 +02:00
|
|
|
|
public string? name { get; }
|
|
|
|
|
public string? volumeNumber { get; }
|
|
|
|
|
public string? chapterNumber { get; }
|
2023-05-17 23:23:01 +02:00
|
|
|
|
|
2023-05-18 16:03:00 +02:00
|
|
|
|
public Chapter(Publication publication, string? name, string? volumeNumber, string? chapterNumber)
|
2023-05-17 23:23:01 +02:00
|
|
|
|
{
|
|
|
|
|
this.publication = publication;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.volumeNumber = volumeNumber;
|
|
|
|
|
this.chapterNumber = chapterNumber;
|
|
|
|
|
}
|
|
|
|
|
}
|