19 lines
620 B
C#
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; }
|
|
} |