money-module/src/main/kotlin/com/cubetiqs/money/MoneyExchangeProvider.kt
Sambo Chea 31760ee901 Add and updated for whole the money modules with new style and some operators and computation
But money object not full implementation yet, because we need the exchange and filter the object states for money
2021-02-08 12:39:52 +07:00

5 lines
116 B
Kotlin

package com.cubetiqs.money
interface MoneyExchangeProvider {
fun getRate(currency: StdMoney.Currency): Double
}