1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-11-22 16:23:48 +00:00

Update ChatIdentifierWithThreadId.kt

This commit is contained in:
InsanusMokrassar 2022-11-10 09:16:46 +06:00 committed by GitHub
parent 304b281d80
commit 1b8ee5c4d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,11 @@
package dev.inmo.tgbotapi.utils.extensions package dev.inmo.tgbotapi.utils.extensions
import dev.inmo.tgbotapi.types.ChatIdentifier
import dev.inmo.tgbotapi.types.MessageThreadId
import kotlinx.serialization.Serializable
import kotlin.Pair
import dev.inmo.tgbotapi.types.message.abstract.Message
sealed interface ChatIdWithThreadId { sealed interface ChatIdWithThreadId {
val chatId: ChatIdentifier val chatId: ChatIdentifier
val threadId: MessageThreadId? val threadId: MessageThreadId?