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

9 lines
194 B
Kotlin
Raw Normal View History

2022-05-01 16:13:40 +00:00
package dev.inmo.tgbotapi.abstracts.types
import dev.inmo.tgbotapi.types.MessageId
2022-05-01 16:13:40 +00:00
interface ReplyMessageId {
val replyToMessageId: MessageId?
2022-05-01 16:13:40 +00:00
val allowSendingWithoutReply: Boolean?
}