mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
11 lines
395 B
Objective-C
11 lines
395 B
Objective-C
#import "TGMessageViewModel.h"
|
|
|
|
@class TGMessage;
|
|
@class TGDocumentMediaAttachment;
|
|
|
|
@interface TGStickerMessageViewModel : TGMessageViewModel
|
|
|
|
- (instancetype)initWithMessage:(TGMessage *)message document:(TGDocumentMediaAttachment *)document size:(CGSize)size authorPeer:(id)authorPeer context:(TGModernViewContext *)context replyHeader:(TGMessage *)replyHeader replyPeer:(id)replyPeer;
|
|
|
|
@end
|