mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
23 lines
613 B
Objective-C
23 lines
613 B
Objective-C
#import <CoreLocation/CoreLocation.h>
|
|
|
|
@class TGBridgeLocationMediaAttachment;
|
|
|
|
@interface TGBridgeLocationVenue : NSObject <NSCoding>
|
|
{
|
|
CLLocationCoordinate2D _coordinate;
|
|
NSString *_identifier;
|
|
NSString *_provider;
|
|
NSString *_name;
|
|
NSString *_address;
|
|
}
|
|
|
|
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
|
|
@property (nonatomic, readonly) NSString *identifier;
|
|
@property (nonatomic, readonly) NSString *provider;
|
|
@property (nonatomic, readonly) NSString *name;
|
|
@property (nonatomic, readonly) NSString *address;
|
|
|
|
- (TGBridgeLocationMediaAttachment *)locationAttachment;
|
|
|
|
@end
|