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:
2026-02-26 22:10:48 -05:00
parent e12f78c479
commit 58d57509e5
7 changed files with 321 additions and 0 deletions

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; }