mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00: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;
|