13 lines
373 B
C#
13 lines
373 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; }
|
|
public DateTimeOffset? DueAt { get; set; }
|
|
public bool ClearDueAt { get; set; }
|
|
}
|