1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-01 07:25:23 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/requests/stickers/abstracts/StandardStickerSetAction.kt

9 lines
263 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.requests.stickers.abstracts
2023-03-10 08:20:34 +00:00
import dev.inmo.tgbotapi.requests.stickers.InputSticker
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.types.stickers.MaskPosition
2023-03-10 05:16:13 +00:00
interface StandardStickerSetAction : OwnerStickerSetAction {
2023-03-10 08:20:34 +00:00
val inputSticker: InputSticker
2023-03-10 05:16:13 +00:00
}