2023-12-09 09:54:34 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.PageDto;
|
|
|
|
|
|
|
|
|
|
|
|
public class AppDashboardPageDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public int UnDoneActivitiesToday { get; set; }
|
|
|
|
|
|
public int DoneActivitiesToday { get; set; }
|
|
|
|
|
|
public int TotalActivitiesToday { get; set; }
|
2023-12-11 14:32:29 +03:30
|
|
|
|
public int TotalStaffToday { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string CurrentSignUpStep { get; set; } = string.Empty;
|
|
|
|
|
|
public int SignUpCompletePercent { get; set; }
|
|
|
|
|
|
|
2023-12-09 09:54:34 +03:30
|
|
|
|
}
|