22 lines
646 B
C#
22 lines
646 B
C#
namespace CompanyManagement.Infrastructure.Excel.RollCall;
|
|
|
|
public class CaseHistoryRollCallForOneDayViewModel
|
|
{
|
|
public string DateFa { get; set; }
|
|
public DateTime DateGr { get; set; }
|
|
public string DayOfWeekFa { get; set; }
|
|
public bool IsHoliday { get; set; }
|
|
public List<RollCallItemForOneDayExcelViewModel> RollCalls { get; set; }
|
|
|
|
|
|
}
|
|
|
|
public class RollCallItemForOneDayExcelViewModel
|
|
{
|
|
public string EmployeeFullName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string StartsItems { get; set; }
|
|
public string EndsItems { get; set; }
|
|
public string TotalWorkingHours { get; set; }
|
|
}
|