1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-26 03:28:10 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/games/Game.kt

15 lines
451 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.games
2018-12-26 08:07:24 +00:00
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.CommonAbstracts.*
import dev.inmo.tgbotapi.types.files.AnimationFile
import dev.inmo.tgbotapi.types.files.Photo
2018-12-26 08:07:24 +00:00
data class Game(
2019-08-17 16:48:18 +00:00
override val title: String,
2018-12-26 08:07:24 +00:00
val description: String,
val photo: Photo,
2019-08-17 16:48:18 +00:00
override val caption: String? = null,
override val captionEntities: List<TextPart> = emptyList(),
2018-12-26 08:07:24 +00:00
val animation: AnimationFile? = null
2019-12-02 08:44:23 +00:00
) : Titled, CaptionedInput