Files
Backend-Api/CompanyManagment.App.Contracts/RollCall/EmployeeRollCallsByMonthViewModel.cs
2025-01-05 05:35:33 +03:30

18 lines
545 B
C#

using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.RollCall
{
public class EmployeeRollCallsByMonthViewModel
{
public DateTime DateGr { get; set; }
public string PersianYear { get; set; }
public string PersianMonthName { get; set; }
public IEnumerable<RollCallViewModel> RollCalls { get; set; }
public string DateIndex { get; set; }
public string TotalWorkingHours { get; set; }
public string TotalWorkingHoursTimeSpan { get; set; }
}
}