Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ryanpbrewster/3b71c3dab8ef8cf0fe2b46a628ff1fbe to your computer and use it in GitHub Desktop.
Save ryanpbrewster/3b71c3dab8ef8cf0fe2b46a628ff1fbe to your computer and use it in GitHub Desktop.
Definition of the case class Person from Working with JSON in Play 2.1 by Greg Methvin
case class Person(
id: Option[Long] = None,
firstName: String,
lastName: String,
birthDate: LocalDate)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment