[indicatorPathGroups | DONE]: Add getters/setters in indicatorPathGroup

This commit is contained in:
Konstantinos Triantafyllou 2024-06-19 10:07:08 +03:00
parent 668dd704ff
commit a1e5a421af
1 changed files with 16 additions and 0 deletions

View File

@ -13,4 +13,20 @@ public class IndicatorPathGroup {
this.title = title;
this.indicatorPaths = indicatorPaths;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public List<IndicatorPath> getIndicatorPaths() {
return indicatorPaths;
}
public void setIndicatorPaths(List<IndicatorPath> indicatorPaths) {
this.indicatorPaths = indicatorPaths;
}
}