17 lines
352 B
Kotlin
17 lines
352 B
Kotlin
package com.example.rehabilitation.db
|
|
|
|
import androidx.room.ColumnInfo
|
|
import androidx.room.Entity
|
|
import androidx.room.PrimaryKey
|
|
|
|
@Entity(tableName = "items")
|
|
data class Item(
|
|
@PrimaryKey(autoGenerate = true)
|
|
var id:Int? = null,
|
|
@ColumnInfo(name = "name")
|
|
var name:String,
|
|
@ColumnInfo(name = "price")
|
|
var price:String,
|
|
|
|
)
|