Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save virendersran01/e8c8337e40be182edf247c8639848d81 to your computer and use it in GitHub Desktop.
Save virendersran01/e8c8337e40be182edf247c8639848d81 to your computer and use it in GitHub Desktop.
sealed interface SallyResponseResource<out T> {
data class Success<T>(val data: T) : SallyResponseResource<T>
data class Error(val exception: AppException, val errorCode: String? = null) :
SallyResponseResource<Nothing>
data class Loading(val status: Boolean) : SallyResponseResource<Nothing>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment