money-module/src/main/kotlin/com/cubetiqs/money/MoneyExchangeAdapter.kt

5 lines
104 B
Kotlin
Raw Normal View History

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