task-tracking-system / TaskTrackingSystem.Shared /Models /Report /TeamProductivityReportDto.cs
User
Add project files.
3418204
Raw
History Blame Contribute Delete
536 Bytes
namespace TaskTrackingSystem.Shared.Models.Report
{
public class TeamProductivityReportDto
{
public long UserId { get; set; }
public string FullName { get; set; } = string.Empty;
public string Username { get; set; } = string.Empty;
public int TotalAssigned { get; set; }
public int Completed { get; set; }
public int InProgress { get; set; }
public int ToDo { get; set; }
public int Overdue { get; set; }
public double CompletionRate { get; set; }
}
}