All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.Money.kt Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package io.fluidsonic.stdlib

import kotlinx.serialization.*


@Serializable
data class Money(
	val amount: Cents,
	val currency: Currency
) {

	init {
		freeze()
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy