mirror of
https://github.com/danog/Telegram.git
synced 2024-11-30 04:29:15 +01:00
13 lines
374 B
Objective-C
13 lines
374 B
Objective-C
#import "PSCoding.h"
|
|
|
|
#import "TGStickerPackReference.h"
|
|
|
|
@interface TGDocumentAttributeSticker : NSObject <PSCoding, NSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSString *alt;
|
|
@property (nonatomic, strong, readonly) id<TGStickerPackReference> packReference;
|
|
|
|
- (instancetype)initWithAlt:(NSString *)alt packReference:(id<TGStickerPackReference>)packReference;
|
|
|
|
@end
|