Created
December 5, 2018 08:44
-
-
Save Sottti/bffc5a1bfa304c8b7b5b0632fdccdf5a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
open class User(val userId: Int, val userName: String) | |
class Editor(userId: Int, userName: String, val rank: Int) : User(userId, userName) | |
class Moderator(userId: Int, userName: String, val type: Int) : User(userId, userName) | |
class Staff(userId: Int, userName: String, val department: String) : User(userId, userName) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment