Skip to content

Instantly share code, notes, and snippets.

@tarek360
Created March 25, 2018 12:48
Show Gist options
  • Save tarek360/fc9bdeacdbb66593c5dd99581ecae641 to your computer and use it in GitHub Desktop.
Save tarek360/fc9bdeacdbb66593c5dd99581ecae641 to your computer and use it in GitHub Desktop.
@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