Swiftgram/submodules/WatchCommon/Sources/TGBridgeContactMediaAttachment.h
2019-06-16 00:51:10 +01:00

18 lines
494 B
Objective-C

#if TARGET_OS_WATCH
#import <WatchCommonWatch/TGBridgeMediaAttachment.h>
#else
#import <WatchCommon/TGBridgeMediaAttachment.h>
#endif
@interface TGBridgeContactMediaAttachment : TGBridgeMediaAttachment
@property (nonatomic, assign) int32_t uid;
@property (nonatomic, strong) NSString *firstName;
@property (nonatomic, strong) NSString *lastName;
@property (nonatomic, strong) NSString *phoneNumber;
@property (nonatomic, strong) NSString *prettyPhoneNumber;
- (NSString *)displayName;
@end