mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
629 B
Objective-C
24 lines
629 B
Objective-C
#if TARGET_OS_WATCH
|
|
#import <WatchCommonWatch/TGBridgeMediaAttachment.h>
|
|
#else
|
|
#import <WatchCommon/TGBridgeMediaAttachment.h>
|
|
#endif
|
|
|
|
@interface TGBridgeVenueAttachment : NSObject <NSCoding>
|
|
|
|
@property (nonatomic, strong) NSString *title;
|
|
@property (nonatomic, strong) NSString *address;
|
|
@property (nonatomic, strong) NSString *provider;
|
|
@property (nonatomic, strong) NSString *venueId;
|
|
|
|
@end
|
|
|
|
@interface TGBridgeLocationMediaAttachment : TGBridgeMediaAttachment
|
|
|
|
@property (nonatomic, assign) double latitude;
|
|
@property (nonatomic, assign) double longitude;
|
|
|
|
@property (nonatomic, strong) TGBridgeVenueAttachment *venue;
|
|
|
|
@end
|