18 lines
545 B
C#
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; }
|
|
}
|
|
}
|