Merge pull request #82 from SELab1/session_report

Session report
This commit is contained in:
lbarraga 2023-04-18 16:08:45 +02:00 committed by GitHub Enterprise
commit 58d0d4fe91
7 changed files with 75 additions and 10 deletions

View file

@ -0,0 +1,10 @@
package be.ugent.sel.studeez.data.local.models
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)
)