Created
May 21, 2022 15:01
-
-
Save Adnan9011/f944b71bf0043c8d4f3a45453efce129 to your computer and use it in GitHub Desktop.
This file contains 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
val firstPerson = Person( | |
name = "Bob", //Necessary | |
family = "Ras", //Necessary | |
age = 32, //Optional | |
email = "[email protected]", //Optional | |
phoneNumber = "+19094XXX", //Optional | |
nationalCode = "09640XXXXX" //Optional | |
) | |
val secondPerson = Person( | |
name = "Alis", //Necessary | |
family = "Jackson" //Necessary | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment