Files
Backend-Api/CompanyManagment.App.Contracts/SalaryAid/SalaryAidGroupedByEmployeeViewModel.cs

19 lines
580 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.SalaryAid;
public class SalaryAidGroupedByEmployeeViewModel
{
public string EmployeeName { get; set; }
public long EmployeeId { get; set; }
public List<SalaryAidGroupedByEmployeeViewModelItems> Items { get; set; }
public string TotalAmount { get; set; }
}
public class SalaryAidGroupedByEmployeeViewModelItems
{
public long Id { get; set; }
public string SalaryAidDateTimeFa { get; set; }
public string PersonnelCode { get; set; }
public string Amount { get; set; }
}