Created
August 3, 2022 14:51
-
-
Save devrath/c7425f79aeb7af96b88c57d1316b9ab0 to your computer and use it in GitHub Desktop.
Sample user class
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 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