Skip to content

Instantly share code, notes, and snippets.

@CDRussell
Created March 31, 2018 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CDRussell/5d8e769de92cae3aa91861094d2fbd07 to your computer and use it in GitHub Desktop.
Save CDRussell/5d8e769de92cae3aa91861094d2fbd07 to your computer and use it in GitHub Desktop.
sealed class ParseResult
data class Error(val errorMessage: String) : ParseResult()
data class ParsedData(
val data: String,
val mimeType: String) : ParseResult()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment