Skip to content

Instantly share code, notes, and snippets.

@JacquesSmuts
Last active April 24, 2019 18:41
Show Gist options
  • Save JacquesSmuts/0fc7ced6f167b435f41882c36e9a80cf to your computer and use it in GitHub Desktop.
Save JacquesSmuts/0fc7ced6f167b435f41882c36e9a80cf to your computer and use it in GitHub Desktop.
@Entity(tableName = "UserTable")
internal data class User(
@PrimaryKey val id: String,
val name: String,
val surname: String,
val birthday: Long
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment