22 lines
742 B
C#
22 lines
742 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Loan;
|
|
|
|
public class LoanDetailsViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string EmployeeFullName { get; set; }
|
|
public string LoanGrantDate { get; set; }
|
|
public string InstallmentCount { get; set; }
|
|
public string TotalLoanAmount { get; set; }
|
|
public string TotalPaidAmount { get; set; }
|
|
public string TotalRemainingAmount { get; set; }
|
|
public List<LoanInstallmentDetailsViewModel> Installments { get; set; }
|
|
}
|
|
public class LoanInstallmentDetailsViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string InstallmentDate { get; set; }
|
|
public string InstallmentAmount { get; set; }
|
|
public bool IsPaid { get; set; }
|
|
} |