Last active
May 21, 2022 15:03
-
-
Save Adnan9011/a6a67ec48283d3857c56831b4fb10e25 to your computer and use it in GitHub Desktop.
Builder
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 Person( | |
val name:String, | |
val family:String, | |
val age:Int = 0, | |
val nationalCode: String? = null, | |
val email: String? = null, | |
val phoneNumber: String? = null | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment