moneyutils/src/main/kotlin/com/cubetiqs/libra/moneyutils/MoneyExchangeAdapter.kt

5 lines
115 B
Kotlin
Raw Normal View History

2020-08-27 10:19:50 +07:00
package com.cubetiqs.libra.moneyutils
interface MoneyExchangeAdapter {
fun getRate(currency: String): Double
}