mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
548 B
Objective-C
20 lines
548 B
Objective-C
#import <WatchCommonWatch/TGBridgeMediaAttachment.h>
|
|
|
|
@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
|