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

commonMain.Money.kt Maven / Gradle / Ivy

The newest version!
package com.github.fluidsonic.fluid.stdlib

import kotlinx.serialization.*


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

	init {
		freeze()
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy