Skip to content

Instantly share code, notes, and snippets.

@yashprakash13
Created September 9, 2020 14:21
Show Gist options
  • Save yashprakash13/8246c6e7c64e25e3020736cda1e4b525 to your computer and use it in GitHub Desktop.
Save yashprakash13/8246c6e7c64e25e3020736cda1e4b525 to your computer and use it in GitHub Desktop.
@Entity(tableName = "word_table")
data class Word (
@PrimaryKey
@NonNull
var name: String,
var meaning: String? = null,
var audioPath: String? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment