Skip to content

Instantly share code, notes, and snippets.

@myeonginwoo
Created November 4, 2018 17:27
Show Gist options
  • Save myeonginwoo/afbf857bf6bf14296cb3dab27e78c185 to your computer and use it in GitHub Desktop.
Save myeonginwoo/afbf857bf6bf14296cb3dab27e78c185 to your computer and use it in GitHub Desktop.
sealed class NetworkState {
class Init : NetworkState()
class Loading : NetworkState()
class Success(val item: Item) : NetworkState()
class Error(val throwable: Throwable?) : NetworkState()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment