Skip to content

Instantly share code, notes, and snippets.

@kanuku
Created June 15, 2015 13:45
Show Gist options
  • Save kanuku/4e8b00044b4b363a9214 to your computer and use it in GitHub Desktop.
Save kanuku/4e8b00044b4b363a9214 to your computer and use it in GitHub Desktop.
Model
case class Author(name: String, email: String, links: List[Link])
case class Commit(id: String, message: String, parentId: List[String], author: Author, valid: Option[Boolean], links: List[Link])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment