Skip to content

Instantly share code, notes, and snippets.

@alibahaaa
Created June 25, 2022 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alibahaaa/7c576df115f7e0a1773df90e96232380 to your computer and use it in GitHub Desktop.
Save alibahaaa/7c576df115f7e0a1773df90e96232380 to your computer and use it in GitHub Desktop.
sealed class State : UiState {
object Idle : State()
object Error : State()
object Loading : State()
data class Origami(val origami: List<Entity>) : State()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment