14 lines
468 B
C#
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; }
|
|
}
|
|
}
|