Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Created October 22, 2017 09:57
Show Gist options
  • Save AkshayChordiya/2b20f8a5556804bd7a629031da546905 to your computer and use it in GitHub Desktop.
Save AkshayChordiya/2b20f8a5556804bd7a629031da546905 to your computer and use it in GitHub Desktop.
User entity with ignore
@Entity(tableName = "users")
data class User(
@PrimaryKey(autoGenerate = true)
var id: Int = 0,
var name: String = "",
@Ignore
var secretId: String = ""
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment