Skip to content

Instantly share code, notes, and snippets.

@adamw
Created May 4, 2019 12:12
Show Gist options
  • Save adamw/b9e008a429f9a8557afbf40925b3f0a2 to your computer and use it in GitHub Desktop.
Save adamw/b9e008a429f9a8557afbf40925b3f0a2 to your computer and use it in GitHub Desktop.
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