Skip to content

Instantly share code, notes, and snippets.

@gidgid
Created December 13, 2020 19:25
Show Gist options
  • Save gidgid/4a3827a93acfbd7cacb30a88d2060d83 to your computer and use it in GitHub Desktop.
Save gidgid/4a3827a93acfbd7cacb30a88d2060d83 to your computer and use it in GitHub Desktop.
adts_users_example.scala
sealed trait User
case class AuthenticatedUser(id: String, email: String, password: String) extends User
case class AnonymousUser(name: String) extends User
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment