27 lines
884 B
C#
27 lines
884 B
C#
using _0_Framework.Application;
|
|
|
|
namespace Company.Domain.CustomizeCheckoutTempAgg.ValueObjects;
|
|
|
|
public class CustomizeCheckoutTempLoanInstallments
|
|
{
|
|
public CustomizeCheckoutTempLoanInstallments(string amountForMonth, string month, string year, IsActive isActive, string loanRemaining, string loanAmount, long entityId)
|
|
{
|
|
AmountForMonth = amountForMonth;
|
|
Month = month;
|
|
Year = year;
|
|
IsActive = isActive;
|
|
LoanRemaining = loanRemaining;
|
|
LoanAmount = loanAmount;
|
|
EntityId = entityId;
|
|
}
|
|
|
|
public string AmountForMonth { get; private set; }
|
|
public string Month { get; private set; }
|
|
public string Year { get; private set; }
|
|
public IsActive IsActive { get; private set; }
|
|
public string LoanRemaining { get; set; }
|
|
public string LoanAmount { get; set; }
|
|
public long EntityId { get; set; }
|
|
|
|
|
|
} |