This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-09-01 11:54:12 +02:00
|
|
|
package com.denizd.substitutionplan.models
|
|
|
|
|
|
|
|
|
|
import androidx.room.Entity
|
|
|
|
|
import androidx.room.PrimaryKey
|
|
|
|
|
|
|
|
|
|
@Entity(tableName = "subst_table")
|
2019-09-13 12:03:14 +02:00
|
|
|
internal data class Subst(
|
|
|
|
|
val group: String,
|
|
|
|
|
val date: String,
|
|
|
|
|
val time: String,
|
|
|
|
|
val course: String,
|
|
|
|
|
val room: String,
|
|
|
|
|
val additional: String,
|
|
|
|
|
val teacher: String,
|
|
|
|
|
val type: String,
|
|
|
|
|
val priority: Int
|
|
|
|
|
) {
|
2019-09-01 11:54:12 +02:00
|
|
|
|
|
|
|
|
@PrimaryKey(autoGenerate = true)
|
|
|
|
|
var id: Int = 0
|
|
|
|
|
}
|