Swiftgram/TelegramCore/MediaResourceApiUtils.swift
2017-01-17 18:37:59 +03:00

8 lines
347 B
Swift

import Foundation
extension SecretChatFileReference {
func resource(key: SecretFileEncryptionKey, decryptedSize: Int32) -> SecretFileMediaResource {
return SecretFileMediaResource(fileId: self.id, accessHash: self.accessHash, size: Int(self.size), decryptedSize: decryptedSize, datacenterId: Int(self.datacenterId), key: key)
}
}