mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
342 B
Objective-C
15 lines
342 B
Objective-C
#import <WatchCommonWatch/WatchCommonWatch.h>
|
|
|
|
@interface TGBridgeStickerPack : NSObject <NSCoding>
|
|
{
|
|
bool _builtIn;
|
|
NSString *_title;
|
|
NSArray *_documents;
|
|
}
|
|
|
|
@property (nonatomic, readonly, getter=isBuiltIn) bool builtIn;
|
|
@property (nonatomic, readonly) NSString *title;
|
|
@property (nonatomic, readonly) NSArray *documents;
|
|
|
|
@end
|