#30 added edit screen to destinations
This commit is contained in:
parent
93a282026e
commit
ddbac51c9d
2 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
|||
package be.ugent.sel.studeez.data
|
||||
|
||||
class EditTimerState {
|
||||
import be.ugent.sel.studeez.data.local.models.timer_functional.FunctionalTimer
|
||||
import be.ugent.sel.studeez.data.local.models.timer_info.TimerInfo
|
||||
import javax.inject.Inject
|
||||
import javax.inject.Singleton
|
||||
|
||||
@Singleton
|
||||
class EditTimerState @Inject constructor(){
|
||||
lateinit var timerInfo: TimerInfo
|
||||
}
|
|
@ -8,6 +8,7 @@ object StudeezDestinations {
|
|||
const val HOME_SCREEN = "home"
|
||||
const val TIMER_OVERVIEW_SCREEN = "timer_overview"
|
||||
const val TIMER_SELECTION_SCREEN = "timer_selection"
|
||||
const val TIMER_EDIT_SCREEN = "timer_edit"
|
||||
const val SESSION_SCREEN = "session"
|
||||
const val SESSION_RECAP = "session_recap"
|
||||
// const val TASKS_SCREEN = "tasks"
|
||||
|
|
Reference in a new issue