22 lines
688 B
C#
22 lines
688 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Loan;
|
|
|
|
public class LoanGroupedByDateViewModel
|
|
{
|
|
public string MonthFa { get; set; }
|
|
public string YearFa { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
public List<LoanGroupedByDateViewModelItems> LoanItems { get; set; }
|
|
}
|
|
|
|
public class LoanGroupedByDateViewModelItems
|
|
{
|
|
public long Id { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string PersonnelCode { get; set; }
|
|
public string AmountPerMonth { get; set; }
|
|
public string LoanStartDate { get; set; }
|
|
public string TotalAmountFa { get; set; }
|
|
public string InstallmentCount { get; set; }
|
|
} |