mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
454 B
Objective-C
16 lines
454 B
Objective-C
#import <CoreLocation/CoreLocation.h>
|
|
|
|
@class TGBridgeLocationMediaAttachment;
|
|
|
|
@interface TGBridgeLocationVenue : NSObject <NSCoding>
|
|
|
|
@property (nonatomic) CLLocationCoordinate2D coordinate;
|
|
@property (nonatomic, strong) NSString *identifier;
|
|
@property (nonatomic, strong) NSString *provider;
|
|
@property (nonatomic, strong) NSString *name;
|
|
@property (nonatomic, strong) NSString *address;
|
|
|
|
- (TGBridgeLocationMediaAttachment *)locationAttachment;
|
|
|
|
@end
|