-
-
Save uteke/385b88005951e7a023f59599599e7641 to your computer and use it in GitHub Desktop.
Mutation states
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 interface Mutation { | |
data object ShowLostConnection : Mutation | |
data object DismissLostConnection : Mutation | |
data object ShowLoader : Mutation | |
data class ShowContent(val users: List<UserDataModel>) : Mutation | |
data class ShowError(val exception: Exception) : Mutation | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment