Fix relation Manga->Chapter (latest)

This commit is contained in:
2024-12-16 20:03:38 +01:00
parent 7f946da1c3
commit 1044821147
3 changed files with 14 additions and 15 deletions

View File

@ -18,7 +18,6 @@ public class Chapter : IComparable<Chapter>
public string ArchiveFileName { get; private set; }
public bool Downloaded { get; internal set; } = false;
[ForeignKey("MangaId")]
public Manga ParentManga { get; init; }
public Chapter(Manga parentManga, string url, float chapterNumber,