Swiftgram/Telegram/Watch/WatchCommonWatch/TGBridgeLocationVenue.h
2020-02-19 18:44:10 +04:00

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