Skip to content

Instantly share code, notes, and snippets.

@manuelernesto
Last active August 20, 2020 22:00
Show Gist options
  • Save manuelernesto/bae0834104a39a90ff99b00469008cc3 to your computer and use it in GitHub Desktop.
Save manuelernesto/bae0834104a39a90ff99b00469008cc3 to your computer and use it in GitHub Desktop.
@Entity(tableName = "tb_palestrante")
data class Palestrante(
@PrimaryKey(autoGenerate = true)
var id: Int = 0,
@ColumnInfo(name = "nome_palestrante")
val palestrante: String,
val tecnologia: String,
val topico: String
):Serializable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment