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 TodayStaffNames { get; set; } = new(); public string CurrentPosition { get; set; } = string.Empty; public string CurrentShift { get; set; } = string.Empty; public string CurrentSignUpStep { get; set; } = string.Empty; public int SignUpCompletePercent { get; set; } }