1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/passport/encrypted/abstracts/EncryptedPassportElementWithReverseSide.kt

11 lines
397 B
Kotlin
Raw Normal View History

package dev.inmo.tgbotapi.types.passport.encrypted.abstracts
import dev.inmo.tgbotapi.types.passport.encrypted.EncryptedElementSerializer
2022-04-17 12:15:24 +00:00
import dev.inmo.tgbotapi.types.files.PassportFile
import kotlinx.serialization.Serializable
@Serializable(EncryptedElementSerializer::class)
2021-01-29 06:44:13 +00:00
interface EncryptedPassportElementWithReverseSide : EncryptedPassportElement {
val reverseSide: PassportFile?
2022-04-17 12:15:24 +00:00
}