
* after changing grid style items are not accessible fixed * added total ep released no * padding fix * fixed scroll to top coinciding with navbar * small change
16 lines
No EOL
384 B
Kotlin
16 lines
No EOL
384 B
Kotlin
package ani.dantotsu.download.anime
|
|
|
|
import android.net.Uri
|
|
data class OfflineAnimeModel (
|
|
val title: String,
|
|
val score: String,
|
|
val totalEpisode: String,
|
|
val totalEpisodeList: String,
|
|
val watchedEpisode: String,
|
|
val type: String,
|
|
val episodes: String,
|
|
val isOngoing: Boolean,
|
|
val isUserScored: Boolean,
|
|
val image: Uri?,
|
|
val banner: Uri?,
|
|
) |