making some fields public
This commit is contained in:
parent
dafa8cc606
commit
bfde19caaf
2 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Reference in a new issue