Last active
May 23, 2019 12:19
-
-
Save shkschneider/667cc2e8eb7b214852343a0759dad730 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
@Parcelize | |
data class User( | |
override val id: UUID = UUID.randomUUID(), | |
override val name: String? | |
) : Parcelable, ScopedUser | |
interface ScopedUser { | |
val id: UUID | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment