File size: 536 Bytes
3418204
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}