Skip to content

Money

// RB2 Core Connect
namespace CoreConnect.Commerce.Core;
public class Money
{
public Money(string currencyCode, decimal amount)
{
CurrencyCode = currencyCode;
Amount = amount;
}
/// <summary>
/// The Currency Code of the Money.
/// </summary>
public string CurrencyCode { get; set; }
/// <summary>
/// The Amount of the Money.
/// </summary>
public decimal Amount { get; set; }
}