dk.nodes.nstack.kotlin.models.Proposal.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 Proposal(
var id: Long,
var applicationId: Long,
var section: String,
var key: String,
var locale: String,
var value: String
)