mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-25 00:01:02 +00:00
21 lines
486 B
Kotlin
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
|
|
}
|
|
} |