TelegramBotTutorial/welcome/src/main/kotlin/model/ChatSettings.kt

13 lines
298 B
Kotlin
Raw Normal View History

2022-07-09 17:41:37 +00:00
package model
import dev.inmo.tgbotapi.types.ChatId
import dev.inmo.tgbotapi.types.MessageIdentifier
import kotlinx.serialization.Serializable
@Serializable
internal data class ChatSettings(
val targetChatId: ChatId,
val sourceChatId: ChatId,
val sourceMessageId: MessageIdentifier
)