Skip to content

Instantly share code, notes, and snippets.

@lucapiccinelli
Created January 2, 2021 07:23
Show Gist options
  • Save lucapiccinelli/21e5d90621e0e8f63dc9401765b7ce72 to your computer and use it in GitHub Desktop.
Save lucapiccinelli/21e5d90621e0e8f63dc9401765b7ce72 to your computer and use it in GitHub Desktop.
data class PersonalName(
val firstname: String,
val middleInitial: String,
val lastname: String)
data class Email(
val value: String,
val isVerified: Boolean)
data class ContactInfo(
val name: PersonalName,
val email: Email)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment