dk.nodes.nstack.kotlin.models.Language.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nstack-kotlin-core Show documentation
Show all versions of nstack-kotlin-core Show documentation
nstack.io library for translations, update management and more.
package dk.nodes.nstack.kotlin.models
import java.util.Locale
data class Language(
val id: Int,
val name: String,
val locale: Locale,
val direction: String,
val isDefault: Boolean,
val isBestFit: Boolean
)