Skip to content

Instantly share code, notes, and snippets.

@Mercandj
Created April 29, 2024 14:44
Show Gist options
  • Save Mercandj/fb3c73fabba6c1b6b0af03d4c8d505c5 to your computer and use it in GitHub Desktop.
Save Mercandj/fb3c73fabba6c1b6b0af03d4c8d505c5 to your computer and use it in GitHub Desktop.
sealed class Response
data class Success(
val data: String
) : Response()
data object Failed : Response()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment