1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-30 21:37:50 +00:00
tgbotapi/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/message/ChannelEventMessage.kt

15 lines
656 B
Kotlin
Raw Normal View History

2018-12-26 08:07:24 +00:00
package com.github.insanusmokrassar.TelegramBotAPI.types.message
import com.github.insanusmokrassar.TelegramBotAPI.types.MessageIdentifier
2019-08-12 09:15:22 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.chat.abstracts.ChannelChat
2018-12-26 08:07:24 +00:00
import com.github.insanusmokrassar.TelegramBotAPI.types.message.ChatEvents.abstracts.ChannelEvent
import com.github.insanusmokrassar.TelegramBotAPI.types.message.abstracts.ChatEventMessage
import com.soywiz.klock.DateTime
2018-12-26 08:07:24 +00:00
data class ChannelEventMessage(
override val messageId: MessageIdentifier,
override val chat: ChannelChat,
override val chatEvent: ChannelEvent,
override val date: DateTime
) : ChatEventMessage