mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-13 23:09:24 +00:00
16 lines
437 B
Objective-C
16 lines
437 B
Objective-C
#import <LegacyComponents/TGMediaAttachment.h>
|
|
|
|
@class TGImageMediaAttachment;
|
|
@class TGDocumentMediaAttachment;
|
|
@class TGWebPageMediaAttachment;
|
|
|
|
#define TGAuthorSignatureMediaAttachmentType ((int)0x157b8516)
|
|
|
|
@interface TGAuthorSignatureMediaAttachment : TGMediaAttachment <TGMediaAttachmentParser, NSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSString *signature;
|
|
|
|
- (instancetype)initWithSignature:(NSString *)signature;
|
|
|
|
@end
|