mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
10 lines
447 B
Swift
10 lines
447 B
Swift
import Foundation
|
|
import SyncCore
|
|
|
|
public enum CloudMediaResourceLocation: Equatable {
|
|
case photo(id: Int64, accessHash: Int64, fileReference: Data, thumbSize: String)
|
|
case file(id: Int64, accessHash: Int64, fileReference: Data, thumbSize: String)
|
|
case peerPhoto(peer: PeerReference, fullSize: Bool, volumeId: Int64, localId: Int64)
|
|
case stickerPackThumbnail(packReference: StickerPackReference, volumeId: Int64, localId: Int64)
|
|
}
|