dk.nodes.nstack.kotlin.models.TranslationData.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
data class TranslationData(
var key: String? = null,
val text: String? = null,
val hint: String? = null,
val description: String? = null,
val textOn: String? = null,
val textOff: String? = null,
val contentDescription: String? = null,
val title: String? = null,
val subtitle: String? = null
)