Allow setting ParentTaskId when updating a task via the API (with validation that the parent exists) and when creating a task via the MCP create_task tool. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
285 B
C#
11 lines
285 B
C#
namespace TaskTracker.Core.DTOs;
|
|
|
|
public class UpdateTaskRequest
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Category { get; set; }
|
|
public int? EstimatedMinutes { get; set; }
|
|
public int? ParentTaskId { get; set; }
|
|
}
|