making some fields public

This commit is contained in:
lbarraga 2023-05-01 17:52:40 +02:00
parent dafa8cc606
commit bfde19caaf
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ import be.ugent.sel.studeez.data.local.models.timer_functional.FunctionalTimer
class CustomTimerInfo(
name: String,
description: String,
val studyTime: Int,
var studyTime: Int,
id: String = ""
): TimerInfo(id, name, description) {

View file

@ -7,8 +7,8 @@ import be.ugent.sel.studeez.data.local.models.timer_functional.FunctionalTimerVi
class PomodoroTimerInfo(
name: String,
description: String,
val studyTime: Int,
val breakTime: Int,
var studyTime: Int,
var breakTime: Int,
val repeats: Int,
id: String = ""
): TimerInfo(id, name, description) {