Files
Backend-Api/WorkFlow/Application/WorkFlow.Application.Contracts/Shared/DailyRollCallWorkFlowViewModel.cs

15 lines
486 B
C#

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