Skip to content

Instantly share code, notes, and snippets.

@deepanshu42
Created April 17, 2020 18:08
Show Gist options
  • Select an option

  • Save deepanshu42/e4c952db92b92e43a1b918548a243fca to your computer and use it in GitHub Desktop.

Select an option

Save deepanshu42/e4c952db92b92e43a1b918548a243fca to your computer and use it in GitHub Desktop.
User Entity Example
@Entity
data class User(
@PrimaryKey val uid: Int,
@ColumnInfo(name = "first_name") val firstName: String?,
@ColumnInfo(name = "last_name") val lastName: String?
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment