dk.nodes.nstack.kotlin.models.RateReminder.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
/**
* Info for rate reminder dialog
*/
data class RateReminder(
val title: String,
val body: String,
val yesButton: String,
val laterButton: String,
val noButton: String,
val link: String
)