12 lines
347 B
C#
12 lines
347 B
C#
namespace TaskTracker.Core.DTOs;
|
|
|
|
public class CreateTaskRequest
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
public string? Category { get; set; }
|
|
public int? ParentTaskId { get; set; }
|
|
public int? EstimatedMinutes { get; set; }
|
|
public DateTimeOffset? DueAt { get; set; }
|
|
}
|