#nullable disable namespace WorkFlow.Application.Contracts.Shared; public record DailyRollCallWorkFlowViewModel { public string DateTimeFa { get; set; } public DateTime DateTime { get; set; } public List RollCallWorkFlowPerDayViewModels { get; set; } = new(); public int RollCallWorkFlowPerDayCount { get; set; } public string DayOfWeekFa { get; set; } public bool IsHoliday { get; set; } public bool IsFriday { get; set; } }