mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
15 lines
524 B
Objective-C
15 lines
524 B
Objective-C
#import "TGNeoViewModel.h"
|
|
|
|
@class TGBridgeForwardedMessageMediaAttachment;
|
|
@class TGBridgeUser;
|
|
@class TGBridgeChat;
|
|
|
|
@interface TGNeoForwardHeaderViewModel : TGNeoViewModel
|
|
|
|
- (instancetype)initWithForwardAttachment:(TGBridgeForwardedMessageMediaAttachment *)attachment user:(TGBridgeUser *)user outgoing:(bool)outgoing;
|
|
- (instancetype)initWithForwardAttachment:(TGBridgeForwardedMessageMediaAttachment *)attachment chat:(TGBridgeChat *)chat outgoing:(bool)outgoing;
|
|
|
|
@end
|
|
|
|
extern const CGFloat TGNeoForwardHeaderHeight;
|