Last active
August 5, 2019 09:32
-
-
Save fhulufhelo/1446d7b27b958485daebcce302233d6c to your computer and use it in GitHub Desktop.
This file contains 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 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