User
add: Timelog table, BudgetedHours, estimated hours
3bd1468
Raw
History Blame Contribute Delete
530 Bytes
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; }
}
}