Created
May 23, 2018 20:52
-
-
Save javipacheco/a81e56b29cbe0f69ca6856792e4175c3 to your computer and use it in GitHub Desktop.
ViewState
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
sealed class ViewState { | |
object IdleViewState : ViewState() | |
object WaitingViewState : ViewState() | |
object SuccessViewState : ViewState() | |
data class FailedViewState(val throwable: Throwable) : ViewState() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment