1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-15 06:15:27 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/webapps/query/SentWebAppMessage.kt

10 lines
232 B
Kotlin
Raw Normal View History

2022-04-17 14:30:18 +00:00
package dev.inmo.tgbotapi.types.webapps.query
2024-03-16 14:36:48 +00:00
import dev.inmo.tgbotapi.types.InlineMessageId
2022-04-17 14:30:18 +00:00
import kotlinx.serialization.Serializable
@Serializable
data class SentWebAppMessage(
2024-03-16 14:36:48 +00:00
val inlineMessageId: InlineMessageId? = null
2022-04-17 14:30:18 +00:00
)