Skip to content

Instantly share code, notes, and snippets.

@marcinOz
Last active June 14, 2018 12:41
Show Gist options
  • Save marcinOz/247e5c49d8791d6d8d3c07ecbff6cc45 to your computer and use it in GitHub Desktop.
Save marcinOz/247e5c49d8791d6d8d3c07ecbff6cc45 to your computer and use it in GitHub Desktop.
sealed class ResourceState
class LoadingState : ResourceState()
class EmptyState : ResourceState()
data class PopulatedState<T>(val data: T) : ResourceState()
data class ErrorState(val message: String?) : ResourceState()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment