Last active
March 21, 2018 01:20
-
-
Save CDRussell/c0e074441758b5b9e09225de802ca117 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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