1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/chat/abstracts/GroupChat.kt

8 lines
226 B
Kotlin
Raw Normal View History

package com.github.insanusmokrassar.TelegramBotAPI.types.chat.abstracts
2019-08-12 07:46:16 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.chat.ChatPermissions
interface GroupChat : PublicChat {
2019-08-12 07:46:16 +00:00
val permissions: ChatPermissions?
}