File size: 530 Bytes
3418204
 
 
 
 
 
 
 
 
 
3bd1468
3418204
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace TaskTrackingSystem.Shared.Models.Report
{
    public class UserProductivityDto
    {
        public long UserId { get; set; }
        public string Username { get; set; } = string.Empty;
        public string FullName { get; set; } = string.Empty;
        public int TotalAssignedTasks { get; set; }
        public int CompletedTasksCount { get; set; }
        public double EfficiencyRatio { get; set; } // Completed / Total Asssined (percentage or ratio)
        public double OnTimeDeliveryRate { get; set; }
    }
}