19 lines
461 B
C#
19 lines
461 B
C#
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
|
|
namespace _0_Framework.Domain.CustomizeCheckoutShared.ValueObjects;
|
|
|
|
public record NightWorkPay
|
|
{
|
|
public NightWorkPay(NightWorkType nightWorkingType, double value)
|
|
{
|
|
NightWorkingType = nightWorkingType;
|
|
Value = value;
|
|
}
|
|
|
|
private NightWorkPay()
|
|
{
|
|
}
|
|
|
|
public NightWorkType NightWorkingType { get; private set; }
|
|
public double Value { get; private set; }
|
|
} |