mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
21 lines
581 B
C
21 lines
581 B
C
|
#import "TGBridgeCommon.h"
|
||
|
|
||
|
@class SSignal;
|
||
|
|
||
|
@interface TGBridgeChatMessageListView : NSObject <NSCoding>
|
||
|
{
|
||
|
NSArray *_messages;
|
||
|
NSNumber *_earlierReferenceMessageId;
|
||
|
NSNumber *_laterReferenceMessageId;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, readonly) NSArray *messages;
|
||
|
@property (nonatomic, readonly) SSignal *earlierView;
|
||
|
@property (nonatomic, readonly) SSignal *laterView;
|
||
|
|
||
|
//- (instancetype)initWithDictionary:(NSDictionary *)dictionary adjacentViewsSignalProducer:(SSignal *(^)(int32_t))adjacentViewsSignalProducer;
|
||
|
|
||
|
@end
|
||
|
|
||
|
extern NSString *const TGBridgeChatMessageListViewKey;
|