Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fhulufhelo/1446d7b27b958485daebcce302233d6c to your computer and use it in GitHub Desktop.
Save fhulufhelo/1446d7b27b958485daebcce302233d6c to your computer and use it in GitHub Desktop.
class RegisterBuyer extends RegisterUser
{
abstract handle();
}
class RegisterSeller extends RegisterUser
{
abstract handle();
}
class RegisterAdmin extends RegisterUser
{
abstract handle();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment