Files
Backend-Api/0_Framework/Excel/RollCall/CaseHistoryRollCallForOneDayViewModel.cs
2025-01-04 21:45:20 +03:30

26 lines
711 B
C#

using System.Collections.Generic;
using System;
using System.Security.Cryptography;
namespace _0_Framework.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; }
}