tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/chat/abstracts/PrivateChat.kt

7 lines
171 B
Kotlin

package com.github.insanusmokrassar.TelegramBotAPI.types.chat.abstracts
interface PrivateChat : Chat, UsernameChat {
val firstName: String
val lastName: String
}