Created
April 16, 2015 19:10
-
-
Save hhariri/e5bed1228f4682773111 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
data class Customer(val name: String, val email: String) | |
if you want to have mutable properties | |
data class Customer(var name: String, var email: String) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment