11 lines
300 B
C#
11 lines
300 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; }
|
|
}
|