🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
728 B
C#
21 lines
728 B
C#
namespace ColaFlow.Modules.ProjectManagement.Application.DTOs;
|
|
|
|
/// <summary>
|
|
/// Data Transfer Object for Task
|
|
/// </summary>
|
|
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; }
|
|
}
|