#74 added a feedEntry dataclass

This commit is contained in:
lbarraga 2023-05-07 13:55:44 +02:00
parent 45f28592ab
commit 83fba0de70
5 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package be.ugent.sel.studeez.data.local.models
data class FeedEntry(
val argb_color: Long = 0,
val subJectName: String = "",
val taskName: String = "",
val taskId: String = "", // Name of task is not unique
val subjectId: String = "",
val totalStudyTime: Int = 0
)

View file

@ -0,0 +1,4 @@
package be.ugent.sel.studeez.domain
interface FeedDAO {
}

View file

@ -0,0 +1,4 @@
package be.ugent.sel.studeez.domain.implementation
class FirebaseFeedDAO {
}

View file

@ -0,0 +1,2 @@
package be.ugent.sel.studeez.screens.home

View file

@ -0,0 +1,4 @@
package be.ugent.sel.studeez.screens.home
class FeedViewModel {
}