Api/Brizco.Domain/Dtos/PageDto/AppDashboardPageDto.cs

13 lines
392 B
C#

namespace Brizco.Domain.Dtos.PageDto;
public class AppDashboardPageDto
{
public int UnDoneActivitiesToday { get; set; }
public int DoneActivitiesToday { get; set; }
public int TotalActivitiesToday { get; set; }
public int TotalStaffToday { get; set; }
public string CurrentSignUpStep { get; set; } = string.Empty;
public int SignUpCompletePercent { get; set; }
}