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

20 lines
736 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 TotalShiftToday { get; set; }
public int TotalStaffToday { get; set; }
public List<string> TodayStaffNames { get; set; } = new();
public string CurrentPosition { get; set; } = string.Empty;
public string CurrentShift { get; set; } = string.Empty;
public Guid CurrentShiftId { get; set; }
public List<ShiftPlanSDto> ShiftPlans { get; set; } = new();
public string CurrentSignUpStep { get; set; } = string.Empty;
public int SignUpCompletePercent { get; set; }
}