Created
January 2, 2021 07:23
-
-
Save lucapiccinelli/21e5d90621e0e8f63dc9401765b7ce72 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 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