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.
26 lines
770 B
26 lines
770 B
// |
|
// CLTimezoneData.h |
|
// Clocker |
|
// |
|
// Created by Abhishek Banthia on 12/22/15. |
|
// |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@interface CLTimezoneData : NSObject<NSCoding> |
|
|
|
@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; |
|
@property (strong, nonatomic) NSString *latitude; |
|
@property (strong, nonatomic) NSString *longitude; |
|
@property (strong, nonatomic) NSDate *nextUpdate; |
|
|
|
-(instancetype)initWithDictionary:(NSDictionary *)dictionary; |
|
- (BOOL)saveObjectToPreferences:(CLTimezoneData *)object; |
|
|
|
@end
|
|
|