Merge branch 'dev'

This commit is contained in:
2025-09-01 23:32:38 +02:00
6 changed files with 111 additions and 15 deletions

View File

@@ -68,10 +68,20 @@ public class Time implements Mappable{
return description;
}
public Time description(String newVal) {
description = newVal;
return this;
}
public Long end(){
return end;
}
public Time end(Long newVal) {
end = newVal;
return this;
}
public long id(){
return id;
}
@@ -144,6 +154,11 @@ public class Time implements Mappable{
return subject;
}
public Time subject(String newValue) {
subject = newValue;
return this;
}
public Collection<Long> taskIds(){
return taskIds;
}