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.
Files
avh-plan-android/app/src/main/java/com/denizd/substitutionplan/models/Subst.kt
T

11 lines
384 B
Kotlin
Raw Normal View History

package com.denizd.substitutionplan.models
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(tableName = "subst_table")
2019-09-04 18:46:25 +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 priority: Int) {
@PrimaryKey(autoGenerate = true)
var id: Int = 0
}