Spaces:
Running
Running
File size: 254 Bytes
3418204 | 1 2 3 4 5 6 7 8 9 10 | namespace TaskTrackingSystem.Shared.Models.Dashboard
{
public class DashboardSummaryDto
{
public int TotalUsers { get; set; }
public int ActiveProjectsCount { get; set; }
public int PendingTasksCount { get; set; }
}
}
|