mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-23 16:16:08 +02: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;
|