You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
488 B
20 lines
488 B
// |
|
// CLTimezoneData.h |
|
// Clocker |
|
// |
|
// Created by Abhishek Banthia on 12/22/15. |
|
// |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@interface CLTimezoneData : NSObject |
|
|
|
@property (strong, nonatomic) NSString *customLabel; |
|
@property (strong, nonatomic) NSString *formattedAddress; |
|
@property (strong, nonatomic) NSString *place_id; |
|
@property (strong, nonatomic) NSString *sunriseTime; |
|
@property (strong, nonatomic) NSString *sunsetTime; |
|
@property (strong, nonatomic) NSString *timezoneID; |
|
|
|
@end
|
|
|