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; }
|
2024-04-25 02:33:17 +03:30
|
|
|
|
public int TotalShiftToday { get; set; }
|
2023-12-11 14:32:29 +03:30
|
|
|
|
public int TotalStaffToday { get; set; }
|
2024-04-25 02:33:17 +03:30
|
|
|
|
public List<string> TodayStaffNames { get; set; } = new();
|
2024-05-06 14:08:15 +03:30
|
|
|
|
public string CurrentPosition { get; set; } = string.Empty;
|
|
|
|
|
|
public string CurrentShift { get; set; } = string.Empty;
|
|
|
|
|
|
|
2023-12-11 14:32:29 +03:30
|
|
|
|
|
|
|
|
|
|
public string CurrentSignUpStep { get; set; } = string.Empty;
|
|
|
|
|
|
public int SignUpCompletePercent { get; set; }
|
|
|
|
|
|
|
2023-12-09 09:54:34 +03:30
|
|
|
|
}
|