Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created March 16, 2018 01:35
Show Gist options
  • Save skydoves/d4ca647616a1d910b1a4a7a5f1f3e460 to your computer and use it in GitHub Desktop.
Save skydoves/d4ca647616a1d910b1a4a7a5f1f3e460 to your computer and use it in GitHub Desktop.
History Model
@Entity(tableName = "SearchHistory")
data class History(
@PrimaryKey val search: String,
val history: Long
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment