fix: offline mode failing

This commit is contained in:
rebelonion 2024-04-14 22:24:58 -05:00
parent ea29449413
commit 7ca44480a9
6 changed files with 28 additions and 8 deletions

View file

@ -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
}
}