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

@@ -6,4 +6,5 @@ public class CreateTaskRequest
public string? Description { get; set; }
public string? Category { get; set; }
public int? ParentTaskId { get; set; }
public int? EstimatedMinutes { get; set; }
}