Skip to content

Instantly share code, notes, and snippets.

@devrath
Created August 3, 2022 14:51
Show Gist options
  • Select an option

  • Save devrath/c7425f79aeb7af96b88c57d1316b9ab0 to your computer and use it in GitHub Desktop.

Select an option

Save devrath/c7425f79aeb7af96b88c57d1316b9ab0 to your computer and use it in GitHub Desktop.
Sample user class
data class User(
val id: String = "",
val firstName: String = "",
val lastName: String = "",
val email: String = "",
val image: String = "",
val mobile: Long = 0,
val gender: String = "",
val profileCompleted: Int = 0
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment