Created
March 25, 2018 12:48
-
-
Save tarek360/fc9bdeacdbb66593c5dd99581ecae641 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(tableName = "eyes") | |
data class EyeEntry( | |
@PrimaryKey @ColumnInfo(name = "id") var id: Long? = null, | |
@ColumnInfo(name = "color") var color: String? = null | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment