Skip to content

Instantly share code, notes, and snippets.

@igorescodro
Created October 16, 2023 13: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 igorescodro/16121e4077112e63602541d53aa55cde to your computer and use it in GitHub Desktop.
Save igorescodro/16121e4077112e63602541d53aa55cde to your computer and use it in GitHub Desktop.
@Entity
data class Category(
@PrimaryKey(autoGenerate = true)
@ColumnInfo(name = "category_id")
var id: Long = 0,
@ColumnInfo(name = "category_name") var name: String,
@ColumnInfo(name = "category_color") var color: String,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment