Created
April 30, 2019 23:29
-
-
Save ismailgungor/db5557d5774553e8d53db2f06fe212fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class User( | |
val createdAt: String? = null, | |
val isPro: Boolean? = null, | |
val name: String? = null, | |
val id: String? = null, | |
val avatar: String? = null, | |
val job: String? = null, | |
val username: String? = null | |
) : Serializable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment