Skip to content

Instantly share code, notes, and snippets.

@manuelernesto
Created August 21, 2020 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manuelernesto/5b6110b117c475321ea7889c1725055f to your computer and use it in GitHub Desktop.
Save manuelernesto/5b6110b117c475321ea7889c1725055f to your computer and use it in GitHub Desktop.
@Entity(tableName = "db.palestrante")
data class Palestrante(
@PrimaryKey(autoGenerate = true)
var id: Int,
@ColumnInfo(name = "nome_palestrante")
val nome: String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment