Created
May 2, 2016 20:59
-
-
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
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
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