feat: add EstimatedMinutes field and general PUT update endpoint for tasks

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
aj
2026-02-26 22:10:48 -05:00
co-authored by Claude Opus 4.6
parent e12f78c479
commit 58d57509e5
7 changed files with 321 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@ public class WorkTask
public DateTime CreatedAt { get; set; }
public DateTime? StartedAt { get; set; }
public DateTime? CompletedAt { get; set; }
public int? EstimatedMinutes { get; set; }
public int? ParentTaskId { get; set; }
public WorkTask? ParentTask { get; set; }