Created
May 19, 2017 07:57
-
-
Save tunitowen/98c9d2920dfd8539a55969ab4343672a to your computer and use it in GitHub Desktop.
Room-GettingStarted-Entity
This file contains 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 Person( | |
@PrimaryKey(autoGenerate = true) | |
val uid: Long, | |
val firstName: String = "", | |
val lastName: String = "" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment