namespace ColaFlow.Modules.ProjectManagement.Application.DTOs; /// /// Data Transfer Object for Task /// public record TaskDto { public Guid Id { get; init; } public string Title { get; init; } = string.Empty; public string Description { get; init; } = string.Empty; public Guid StoryId { get; init; } public string Status { get; init; } = string.Empty; public string Priority { get; init; } = string.Empty; public Guid? AssigneeId { get; init; } public decimal? EstimatedHours { get; init; } public decimal? ActualHours { get; init; } public Guid CreatedBy { get; init; } public DateTime CreatedAt { get; init; } public DateTime? UpdatedAt { get; init; } }