MicroUtils/klock/src/commonMain/kotlin/korlibs/time/KlockLocaleContext.kt

15 lines
249 B
Kotlin

package korlibs.time
data class KlockLocaleContext(val gender: KlockLocaleGender = KlockLocaleGender.Neuter) {
companion object {
val Default = KlockLocaleContext()
}
}
enum class KlockLocaleGender {
Neuter,
Masculine,
}