@@ -22,8 +22,6 @@ public class Manga(
22
22
string ? originalLanguage ,
23
23
MangaReleaseStatus releaseStatus ,
24
24
float ignoreChapterBefore ,
25
- Chapter ? latestChapterDownloaded ,
26
- Chapter ? latestChapterAvailable ,
27
25
MangaConnector mangaConnector ,
28
26
ICollection < Author > authors ,
29
27
ICollection < MangaTag > tags ,
@@ -46,12 +44,6 @@ public class Manga(
46
44
public string FolderName { get ; private set ; } = BuildFolderName ( name ) ;
47
45
public float IgnoreChapterBefore { get ; internal set ; } = ignoreChapterBefore ;
48
46
49
- [ ForeignKey ( "LatestChapterDownloadedId" ) ]
50
- public Chapter ? LatestChapterDownloaded { get ; private set ; } = latestChapterDownloaded ;
51
-
52
- [ ForeignKey ( "LatestChapterAvailableId" ) ]
53
- public Chapter ? LatestChapterAvailable { get ; private set ; } = latestChapterAvailable ;
54
-
55
47
[ ForeignKey ( "MangaConnectorId" ) ]
56
48
public MangaConnector MangaConnector { get ; private set ; } = mangaConnector ;
57
49
@@ -68,7 +60,7 @@ public Manga(string connectorId, string name, string description, string website
68
60
uint year , string ? originalLanguage , MangaReleaseStatus releaseStatus , float ignoreChapterBefore )
69
61
: this ( connectorId , name , description , websiteUrl , coverUrl , coverFileNameInCache , year , originalLanguage ,
70
62
releaseStatus ,
71
- ignoreChapterBefore , null , null , null , null , null , null , null )
63
+ ignoreChapterBefore , null , null , null , null , null )
72
64
{
73
65
74
66
}
@@ -91,7 +83,6 @@ internal void UpdateWithInfo(Manga other)
91
83
this . Links = other . Links ;
92
84
this . Tags = other . Tags ;
93
85
this . AltTitles = other . AltTitles ;
94
- this . LatestChapterAvailable = other . LatestChapterAvailable ;
95
86
this . ReleaseStatus = other . ReleaseStatus ;
96
87
}
97
88
0 commit comments