Files
Backend-Api/WorkFlow/Application/WorkFlow.Application.Contracts/RollCallConfirmedWithoutLunchBreak/DailyRollCallConfirmedWithoutLunchBreakViewModel.cs

14 lines
468 B
C#

namespace WorkFlow.Application.Contracts.RollCallConfirmedWithoutLunchBreak
{
public class DailyRollCallConfirmedWithoutLunchBreakViewModel
{
public DateTime DateGr { get; set; }
public string DateFa { get; set; }
public int Count { get; set; }
public List<RollCallConfirmedWithoutLunchBreakViewModel> RollCallConfirmedWithoutLunchList { get; set; } =
new();
public string DayOfWeekFa { get; set; }
}
}