22 lines
603 B
C#
22 lines
603 B
C#
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
|
|
namespace _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
|
|
|
public record BaseYearsPay
|
|
{
|
|
public BaseYearsPay(BaseYearsPayType baseYearsPayType, double value, BaseYearsPaymentType paymentType)
|
|
{
|
|
BaseYearsPayType = baseYearsPayType;
|
|
Value = value;
|
|
PaymentType = paymentType;
|
|
}
|
|
|
|
private BaseYearsPay()
|
|
{
|
|
|
|
}
|
|
|
|
public BaseYearsPayType BaseYearsPayType { get; private set; }
|
|
public double Value { get; private set; }
|
|
public BaseYearsPaymentType PaymentType { get; private set; }
|
|
} |