Skip to content

Instantly share code, notes, and snippets.

@ifucolo
Last active May 12, 2025 10:58
Show Gist options
  • Save ifucolo/51d829b88a82418bc06e36540dea184e to your computer and use it in GitHub Desktop.
Save ifucolo/51d829b88a82418bc06e36540dea184e to your computer and use it in GitHub Desktop.
sealed interface PrayerState {
data object Loading : PrayerState
data object Empty : PrayerState
data class Success(val prayers: List<ViewType>) : PrayerState
data class Error(val throwable: Throwable, val retryAction: () -> Unit) : PrayerState
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment