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(
|
class CustomTimerInfo(
|
||||||
name: String,
|
name: String,
|
||||||
description: String,
|
description: String,
|
||||||
val studyTime: Int,
|
var studyTime: Int,
|
||||||
id: String = ""
|
id: String = ""
|
||||||
): TimerInfo(id, name, description) {
|
): TimerInfo(id, name, description) {
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ import be.ugent.sel.studeez.data.local.models.timer_functional.FunctionalTimerVi
|
||||||
class PomodoroTimerInfo(
|
class PomodoroTimerInfo(
|
||||||
name: String,
|
name: String,
|
||||||
description: String,
|
description: String,
|
||||||
val studyTime: Int,
|
var studyTime: Int,
|
||||||
val breakTime: Int,
|
var breakTime: Int,
|
||||||
val repeats: Int,
|
val repeats: Int,
|
||||||
id: String = ""
|
id: String = ""
|
||||||
): TimerInfo(id, name, description) {
|
): TimerInfo(id, name, description) {
|
||||||
|
|
Reference in a new issue