money-module/src/main/kotlin/com/cubetiqs/libra/moneyutils/StdMoney.kt

19 lines
357 B
Kotlin

package com.cubetiqs.libra.moneyutils
/**
* Default standard money style
* We have only value and currency of money
*/
interface StdMoney {
/**
* Get money's value from current state.
*
* @return Double
*/
fun getValue(): Double
/**
* Get money's currency from current state.
*/
fun getCurrency(): String
}