Skip to content

Instantly share code, notes, and snippets.

@Kpeved
Last active November 2, 2019 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kpeved/be639cf2c3d32e0222eefe401df317c7 to your computer and use it in GitHub Desktop.
Save Kpeved/be639cf2c3d32e0222eefe401df317c7 to your computer and use it in GitHub Desktop.
data class ContactModel(
val id: Long,
val contactId: Long,
val photoUri: String?,
val firstName: String?,
val surname: String?,
val fullName: String?,
var phoneNumbers: Set<String> = emptySet()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment