mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00

git-subtree-dir: submodules/TelegramCore git-subtree-mainline: 971273e8f8f49a47f14b251d2f35e3445a61fc3f git-subtree-split: 9561227540acef69894e6546395ab223a6233600
9 lines
431 B
Swift
9 lines
431 B
Swift
import Foundation
|
|
|
|
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)
|
|
}
|