User
fix: reports
4671199
Raw
History Blame Contribute Delete
1.23 kB
using System;
using TaskTrackingSystem.Shared.Enums;
using AppTaskStatus = TaskTrackingSystem.Shared.Enums.AppTaskStatus;
namespace TaskTrackingSystem.Shared.Models.Report
{
public class TaskReportDto
{
public long TaskId { get; set; }
public string Title { get; set; } = string.Empty;
public string? Description { get; set; }
public string ProjectName { get; set; } = string.Empty;
public long ProjectId { get; set; }
public AppTaskStatus StatusId { get; set; }
public string StatusName { get; set; } = string.Empty;
public TaskPriority PriorityId { get; set; }
public string PriorityName { get; set; } = string.Empty;
public string? AssignedToUser { get; set; }
public long? AssignedToUserId { get; set; }
public string? AssignedByUser { get; set; }
public DateTime DueDate { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime LastActivity { get; set; }
public int OpenIssues { get; set; }
public int OverdueIssues { get; set; }
public string IssueSummary { get; set; } = string.Empty;
public string TaskHealth { get; set; } = "Healthy";
}
}