1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/src/commonMain/kotlin/com/github/insanusmokrassar/TelegramBotAPI/utils/StorageFile.kt
2020-01-15 12:28:06 +06:00

13 lines
294 B
Kotlin

package com.github.insanusmokrassar.TelegramBotAPI.utils
import io.ktor.utils.io.core.Input
import kotlinx.serialization.Serializable
@Serializable
expect class StorageFile {
val contentType: String
val fileName: String
fun generateCustomName(): String
fun asInput(): Input
}