mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
611 B
Objective-C
19 lines
611 B
Objective-C
#import "TGNeoViewModel.h"
|
|
|
|
@class TGBridgeReplyMessageMediaAttachment;
|
|
@class TGBridgeMediaAttachment;
|
|
@class TGBridgeMessage;
|
|
|
|
@interface TGNeoReplyHeaderViewModel : TGNeoViewModel
|
|
|
|
@property (nonatomic, readonly) TGBridgeMediaAttachment *mediaAttachment;
|
|
@property (nonatomic, readonly) TGBridgeMessage *replyMessage;
|
|
|
|
- (instancetype)initWithReplyAttachment:(TGBridgeReplyMessageMediaAttachment *)attachment users:(NSDictionary *)users outgoing:(bool)outgoing;
|
|
|
|
@end
|
|
|
|
extern const CGFloat TGNeoReplyHeaderHeight;
|
|
extern const CGFloat TGNeoReplyHeaderLineWidth;
|
|
extern const CGFloat TGNeoReplyHeaderSpacing;
|