parent
e2af0a43ba
commit
f0ead5b488
@ -0,0 +1,15 @@ |
||||
package io.legado.app.data.entities |
||||
|
||||
import android.os.Parcelable |
||||
import androidx.room.ColumnInfo |
||||
import kotlinx.parcelize.Parcelize |
||||
|
||||
@Parcelize |
||||
class BookChapterReview( |
||||
@ColumnInfo(defaultValue = "0") |
||||
var bookId: Long = 0, |
||||
var chapterId: Long = 0, |
||||
var summaryUrl: String = "", |
||||
): Parcelable { |
||||
|
||||
} |
Loading…
Reference in new issue