19 lines
402 B
Kotlin
19 lines
402 B
Kotlin
package com.example.rehabilitation.Room
|
|
|
|
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 = "day")
|
|
var day: String,
|
|
@ColumnInfo(name = "date")
|
|
var date: String,
|
|
@ColumnInfo(name = "check")
|
|
var check:Int
|
|
)
|
|
|