Skip to content

Instantly share code, notes, and snippets.

@Foxpace
Created June 5, 2023 17:14
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 Foxpace/0f94bbde157ca1ca005b38359f1b1644 to your computer and use it in GitHub Desktop.
Save Foxpace/0f94bbde157ca1ca005b38359f1b1644 to your computer and use it in GitHub Desktop.
sealed class VmEvents {
object OnLaunch: VmEvents()
}
sealed class VmState {
object Waiting: VmState()
object Running: VmState()
data class Finished(val data: String): VmState()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment