mirror of
https://github.com/null2264/yokai.git
synced 2025-06-20 18:24:42 +00:00
refactor: Migrated most manga queries and some chapter queries to SQLDelight
This commit is contained in:
parent
5ed2934b73
commit
f6080cd5eb
26 changed files with 450 additions and 211 deletions
|
@ -0,0 +1,17 @@
|
|||
package yokai.domain.chapter.models
|
||||
|
||||
data class ChapterUpdate(
|
||||
val id: Long,
|
||||
val mangaId: Long? = null,
|
||||
val url: String? = null,
|
||||
val name: String? = null,
|
||||
val scanlator: String? = null,
|
||||
val read: Boolean? = null,
|
||||
val bookmark: Boolean? = null,
|
||||
val lastPageRead: Long? = null,
|
||||
val pagesLeft: Long? = null,
|
||||
val chapterNumber: Double? = null,
|
||||
val sourceOrder: Long? = null,
|
||||
val dateFetch: Long? = null,
|
||||
val dateUpload: Long? = null,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue