1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-26 03:28:10 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/dice/Dice.kt

14 lines
346 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.dice
2020-04-24 12:25:47 +00:00
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.*
2020-04-24 14:25:53 +00:00
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
2020-04-24 12:25:47 +00:00
@Serializable
data class Dice(
@SerialName(valueField)
val value: DiceResult,
@SerialName(emojiField)
val animationType: DiceAnimationType
2024-01-07 13:04:23 +00:00
) : ExternalReplyInfo.ContentVariant