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/requests/bot/BotCommand.kt

10 lines
345 B
Kotlin
Raw Normal View History

2021-06-25 19:42:35 +00:00
package dev.inmo.tgbotapi.requests.bot
import dev.inmo.tgbotapi.types.abstracts.WithOptionalLanguageCode
2021-06-25 19:42:35 +00:00
import dev.inmo.tgbotapi.requests.abstracts.SimpleRequest
import dev.inmo.tgbotapi.types.commands.BotCommandScope
2021-08-05 17:36:01 +00:00
sealed interface MyCommandsRequest<T : Any> : SimpleRequest<T>, WithOptionalLanguageCode {
2021-06-25 19:42:35 +00:00
val scope: BotCommandScope
}