package me.eternal.purrfect.core.features.impl.downloader.decoder import me.eternal.purrfect.common.data.download.MediaEncryptionKeyPair data class BitmojiSticker( val reference: String, ) : AttachmentInfo() open class AttachmentInfo( val encryption: MediaEncryptionKeyPair? = null, val resolution: Pair? = null, val duration: Long? = null ) { override fun toString() = "AttachmentInfo(encryption=$encryption, resolution=$resolution, duration=$duration)" }