Skip to content

Instantly share code, notes, and snippets.

@charlag
Created September 10, 2017 10:16
Show Gist options
  • Save charlag/8c5b847c8ea285c591bdf8888b236e3f to your computer and use it in GitHub Desktop.
Save charlag/8c5b847c8ea285c591bdf8888b236e3f to your computer and use it in GitHub Desktop.
@Entity(tableName = "todo")
data class TodoEntity(
@PrimaryKey(autoGenerate = true) var id: Long,
var text: String,
var completed: Boolean
)
private data class State(
val todos: List<TodoEntity>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment