User Reading Data
data class UserReadingData(val id: String, val lastReadTime: LocalDateTime? = null, val totalReadTime: Int = 0, val readingProgress: Float = 0.0f, val lastReadChapterId: String? = null, val lastReadChapterTitle: String? = null, val currentChapterReadingProgressMap: Map<String, Float> = mapOf(), val maxChapterReadingProgressMap: Map<String, Float> = mapOf())
用户书本阅读数据接口
Since
Api 4
Constructors
Link copied to clipboard
constructor(id: String, lastReadTime: LocalDateTime? = null, totalReadTime: Int = 0, readingProgress: Float = 0.0f, lastReadChapterId: String? = null, lastReadChapterTitle: String? = null, currentChapterReadingProgressMap: Map<String, Float> = mapOf(), maxChapterReadingProgressMap: Map<String, Float> = mapOf())