feat(manga): Date and Scanlator in description

This commit is contained in:
aayush262 2024-02-29 20:43:30 +05:30
parent 89aaef8355
commit 1316d5a698
5 changed files with 67 additions and 4 deletions

View file

@ -13,6 +13,7 @@ data class MangaChapter(
var description: String? = null,
var sChapter: SChapter,
val scanlator: String? = null,
val date: Long? = null,
var progress: String? = ""
) : Serializable {
constructor(chapter: MangaChapter) : this(
@ -21,7 +22,8 @@ data class MangaChapter(
chapter.title,
chapter.description,
chapter.sChapter,
chapter.scanlator
chapter.scanlator,
chapter.date
)
private val images = mutableListOf<MangaImage>()