mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
23 lines
475 B
Objective-C
23 lines
475 B
Objective-C
|
|
|
|
#import <MtProtoKit/MTMessageService.h>
|
|
|
|
@class MTResendMessageService;
|
|
|
|
@protocol MTResendMessageServiceDelegate <NSObject>
|
|
|
|
@optional
|
|
|
|
- (void)resendMessageServiceCompleted:(MTResendMessageService *)resendService;
|
|
|
|
@end
|
|
|
|
@interface MTResendMessageService : NSObject <MTMessageService>
|
|
|
|
@property (nonatomic, readonly) int64_t messageId;
|
|
@property (nonatomic, weak) id<MTResendMessageServiceDelegate> delegate;
|
|
|
|
- (instancetype)initWithMessageId:(int64_t)messageId;
|
|
|
|
@end
|