Skip to content

Instantly share code, notes, and snippets.

@CDRussell
Last active March 21, 2018 01:20
Show Gist options
  • Save CDRussell/c0e074441758b5b9e09225de802ca117 to your computer and use it in GitHub Desktop.
Save CDRussell/c0e074441758b5b9e09225de802ca117 to your computer and use it in GitHub Desktop.
@Entity
data class Task(@PrimaryKey(autoGenerate = true) var id: Int = 0,
var title: String = "",
var completed: Boolean = false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment