-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPhoto.h
More file actions
26 lines (21 loc) · 771 Bytes
/
Photo.h
File metadata and controls
26 lines (21 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// Photo.h
// FlickrWorld
//
// Created by Nadia Yudina on 4/18/14.
// Copyright (c) 2014 Nadia Yudina. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@interface Photo : NSManagedObject
@property (nonatomic, retain) NSString * title;
@property (nonatomic, retain) NSString * master;
@property (nonatomic, retain) NSString * originalImageLink;
@property (nonatomic, retain) NSString * largeImageLink;
@property (nonatomic, retain) NSData * thumbnail;
@property (nonatomic, retain) NSString * identifier;
@property (nonatomic, retain) NSString * latitude;
@property (nonatomic, retain) NSString * longitude;
@property (nonatomic, retain) NSString * thumbnailLink;
@property (nonatomic, retain) NSDate * lastViewed;
@end