commonMain.eu.codlab.lorcana.cards.CardTranslation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lorcana-data Show documentation
Show all versions of lorcana-data Show documentation
Lorcana set descriptions and data
package eu.codlab.lorcana.cards
import kotlinx.serialization.Serializable
@Serializable
data class CardTranslation(
val name: String,
val title: String? = null,
val flavour: String? = null
)