mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-31 14:51:04 +00:00
fix: offline mode failing
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
package ani.dantotsu.profile
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class User(
|
||||
val id: Int,
|
||||
val name: String,
|
||||
@@ -11,4 +14,8 @@ data class User(
|
||||
val progress: Int? = null,
|
||||
val totalEpisodes : Int? = null,
|
||||
val nextAiringEpisode : Int? = null,
|
||||
)
|
||||
) : java.io.Serializable {
|
||||
companion object {
|
||||
private const val serialVersionUID: Long = 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user