Files
Backend-Api/CompanyManagement.Infrastructure.Excel/RollCall/CaseHistoryRollCallForOneDayViewModel.cs
2025-03-18 16:49:57 +03:30

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; }
}