Added manga data and pipeline.
This commit is contained in:
11
MangaReader.Core/Data/ChapterPage.cs
Normal file
11
MangaReader.Core/Data/ChapterPage.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MangaReader.Core.Data;
|
||||
|
||||
public class ChapterPage
|
||||
{
|
||||
public int ChapterPageId { get; set; }
|
||||
|
||||
public int MangaChapterId { get; set; }
|
||||
public required MangaChapter MangaChapter { get; set; }
|
||||
|
||||
public int PageNumber { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user