Files
Backend-Api/WorkFlow/Application/WorkFlow.Application.Contracts/Shared/DailyWorkFlowEmployeeWithRollCallOnLeaveViewModel.cs
2024-12-23 20:39:04 +03:30

11 lines
381 B
C#

#nullable disable
namespace WorkFlow.Application.Contracts.Shared;
public class DailyWorkFlowEmployeesWithRollCallOnLeaveViewModel
{
public string DateFa { get; set; }
public string DayOfWeek { get; set; }
public List<WorkFlowEmployeeWithRollCallOnLeaveViewModel> EmployeesList { get; set; }
public DateTime Date { get; set; }
public int EmployeesListCount { get; set; }
}