#74 feedEntry now has an endTime
This commit is contained in:
parent
e1ddf41d09
commit
260171a972
1 changed files with 4 additions and 1 deletions
|
@ -1,10 +1,13 @@
|
||||||
package be.ugent.sel.studeez.data.local.models
|
package be.ugent.sel.studeez.data.local.models
|
||||||
|
|
||||||
|
import com.google.firebase.Timestamp
|
||||||
|
|
||||||
data class FeedEntry(
|
data class FeedEntry(
|
||||||
val argb_color: Long = 0,
|
val argb_color: Long = 0,
|
||||||
val subJectName: String = "",
|
val subJectName: String = "",
|
||||||
val taskName: String = "",
|
val taskName: String = "",
|
||||||
val taskId: String = "", // Name of task is not unique
|
val taskId: String = "", // Name of task is not unique
|
||||||
val subjectId: String = "",
|
val subjectId: String = "",
|
||||||
val totalStudyTime: Int = 0
|
val totalStudyTime: Int = 0,
|
||||||
|
val endTime: Timestamp = Timestamp(0, 0)
|
||||||
)
|
)
|
||||||
|
|
Reference in a new issue