mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
18 lines
448 B
Objective-C
18 lines
448 B
Objective-C
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@interface TGDownloadMessage : NSObject
|
|
|
|
@property (nonatomic, readonly) int64_t peerId;
|
|
@property (nonatomic, readonly) int64_t accessHash;
|
|
@property (nonatomic, readonly) int32_t messageId;
|
|
|
|
- (instancetype)initWithPeerId:(int64_t)peerId accessHash:(int64_t)accessHash messageId:(int32_t)messageId;
|
|
|
|
@end
|
|
|
|
@interface TGDownloadMessagesSignal : NSObject
|
|
|
|
+ (SSignal *)downloadMessages:(NSArray *)messages;
|
|
|
|
@end
|