Created
May 4, 2019 12:12
-
-
Save adamw/b9e008a429f9a8557afbf40925b3f0a2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Year(val year: Int) extends AnyVal | |
case class Country(name: String) | |
case class Author(name: String, country: Country) | |
case class Book(id: UUID, title: String, year: Year, author: Author) | |
case class ErrorInfo(error: String) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment