change name of SelectedTimerRepo to SelectedTimerState

This commit is contained in:
Lukas Barragan Torres 2023-04-18 13:33:37 +02:00
parent b3651bbbe5
commit d8b95f5d5b
3 changed files with 7 additions and 7 deletions

View file

@ -9,6 +9,6 @@ import javax.inject.Singleton
* Because this is a singleton-class the view-models of both screens observe the same data.
*/
@Singleton
class SelectedTimerRepo @Inject constructor(){
class SelectedTimerState @Inject constructor(){
var selectedTimer: FunctionalTimer? = null
}