11 lines
381 B
C#
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; }
|
|
} |