Files
Dantotsu/app/src/main/java/ani/dantotsu/profile/User.kt
2024-04-19 06:03:40 -05:00

21 lines
486 B
Kotlin

package ani.dantotsu.profile
import kotlinx.serialization.Serializable
@Serializable
data class User(
val id: Int,
val name: String,
val pfp: String?,
val banner: String?,
// for media
val status: String? = null,
val score: Float? = null,
val progress: Int? = null,
val totalEpisodes: Int? = null,
val nextAiringEpisode: Int? = null,
) : java.io.Serializable {
companion object {
private const val serialVersionUID: Long = 1
}
}