User
Add project files.
3418204
Raw
History Blame Contribute Delete
254 Bytes
namespace TaskTrackingSystem.Shared.Models.Dashboard
{
public class DashboardSummaryDto
{
public int TotalUsers { get; set; }
public int ActiveProjectsCount { get; set; }
public int PendingTasksCount { get; set; }
}
}