now inheriting due date when child task is created

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-10-12 00:05:07 +02:00
parent dd84bad070
commit 00df660fb7
2 changed files with 6 additions and 0 deletions

View File

@@ -65,6 +65,11 @@ public class Task implements Mappable {
return this;
}
public Task dueDate(LocalDate newValue) {
dueDate = newValue;
return this;
}
public LocalDate dueDate(){
return dueDate;
}