namespace Brizco.Domain.Dtos.PageDto; public class AppShiftingPageDto { public List Routines { get; set; } = new List(); public List Days { get; set; } = new List(); } public class AppShiftingPageDayDto { public long DateTime { get; set; } public int TotalShifts { get; set; } public int TotalShiftPlans { get; set; } public List Shifts { get; set; } = new List(); }