Files
Backend-Api/CompanyManagment.App.Contracts/Loan/LoanGroupedByEmployeeViewModel.cs
2025-04-13 22:23:25 +03:30

19 lines
620 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Loan;
public class LoanGroupedByEmployeeViewModel
{
public string EmployeeName { get; set; }
public string TotalAmount { get; set; }
public List<LoanGroupedByEmployeeViewModelItems> LoanItems { get; set; }
}
public class LoanGroupedByEmployeeViewModelItems
{
public long Id { get; set; }
public string PersonnelCode { get; set; }
public string AmountPerMonth { get; set; }
public string LoanDateTimeFa { get; set; }
public string TotalAmountFa { get; set; }
public string InstallmentCount { get; set; }
}