mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
330 B
Objective-C
19 lines
330 B
Objective-C
#if TARGET_OS_WATCH
|
|
#import <WatchCommonWatch/TGBridgeCommon.h>
|
|
#else
|
|
#import <WatchCommon/TGBridgeCommon.h>
|
|
#endif
|
|
|
|
@class SSignal;
|
|
|
|
@interface TGBridgeChatMessages : NSObject <NSCoding>
|
|
{
|
|
NSArray *_messages;
|
|
}
|
|
|
|
@property (nonatomic, readonly) NSArray *messages;
|
|
|
|
@end
|
|
|
|
extern NSString *const TGBridgeChatMessageListViewKey;
|