Skip to content

Instantly share code, notes, and snippets.

@ikitommi
Created November 17, 2013 18:45
Show Gist options
  • Save ikitommi/7516655 to your computer and use it in GitHub Desktop.
Save ikitommi/7516655 to your computer and use it in GitHub Desktop.
PersonBuilder in Scala
package domain
case class Person(id: Option[Long] = None, email: Option[String] = None, firstName: String, lastName: String)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment