CurrencyExchangeRate Model

A simple way of modelling an exchange rate between two currency codes. The Target currency will be an externally defined "BaseCurrency"

Nullable MaxLength(4)
FromCurrencyCode : string

ISO 4217 currency code representing the currency to be converted from

Nullable decimal(18, 7)
Rate : number (decimal)

The amount to multiply a value in FromCurrencyCode to get an equivalent value in the externally defined Target currency.

Example
{
  "FromCurrencyCode": "string value",
  "Rate": 1.23
}