15 lines
486 B
C#
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; }
|
|
}
|
|
|