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

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