Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created April 16, 2015 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hhariri/e5bed1228f4682773111 to your computer and use it in GitHub Desktop.
Save hhariri/e5bed1228f4682773111 to your computer and use it in GitHub Desktop.
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