Skip to content

Instantly share code, notes, and snippets.

@charlag
Created September 10, 2017 10:18
Show Gist options
  • Save charlag/d31fd871f9093640f30ba3a188190556 to your computer and use it in GitHub Desktop.
Save charlag/d31fd871f9093640f30ba3a188190556 to your computer and use it in GitHub Desktop.
private sealed class Event {
data class TodoCheckedEvent(val id: Long, val completed: Boolean) : Event()
data class NewTodoEvent(val text: String) : Event()
data class DbUpdateEvent(val todos: List<TodoEntity>) : Event()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment