18 lines
626 B
C#
18 lines
626 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 string CurrentSignUpStep { get; set; } = string.Empty;
|
|
public int SignUpCompletePercent { get; set; }
|
|
|
|
} |