#76 added sessionReport
This commit is contained in:
parent
8a7e1e4c2c
commit
31e07d2784
1 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
||||||
package be.ugent.sel.studeez.data.local.models
|
package be.ugent.sel.studeez.data.local.models
|
||||||
|
|
||||||
class SessionReport {
|
import com.google.firebase.Timestamp
|
||||||
}
|
import com.google.firebase.firestore.DocumentId
|
||||||
|
|
||||||
|
data class SessionReport(
|
||||||
|
@DocumentId val id: String = "",
|
||||||
|
val studyTime: Int = 0,
|
||||||
|
val endTime: Timestamp = Timestamp(0, 0)
|
||||||
|
)
|
Reference in a new issue