24 lines
677 B
C#
24 lines
677 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.SalaryAid;
|
|
|
|
public class SalaryAidGroupedByDateViewModel
|
|
{
|
|
public string MonthFa { get; set; }
|
|
public string YearFa { get; set; }
|
|
public int Month { get; set; }
|
|
public int Year { get; set; }
|
|
public List<SalaryAidGroupedByDateViewModelItems> Items { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
|
|
}
|
|
public class SalaryAidGroupedByDateViewModelItems
|
|
{
|
|
public long Id { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string Amount { get; set; }
|
|
public string SalaryAidDateTimeFa { get; set; }
|
|
}
|
|
|