moneyutils/src/main/kotlin/com/cubetiqs/libra/moneyutils/StdMoney.kt
2020-08-27 21:42:05 +07:00

25 lines
453 B
Kotlin

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