-
Notifications
You must be signed in to change notification settings - Fork 25
/
Note.h
31 lines (26 loc) · 950 Bytes
/
Note.h
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
27
28
29
30
31
//
// Note.h
// Cycle Atlanta
//
// Created by Guo Anhong on 13-2-26.
// adapted for CyclePhilly 2013, CodeforPhilly.org
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@class User;
@interface Note : NSManagedObject
@property (nonatomic, retain) NSString * details;
@property (nonatomic, retain) NSNumber * speed;
@property (nonatomic, retain) NSNumber * vAccuracy;
@property (nonatomic, retain) NSNumber * longitude;
@property (nonatomic, retain) NSString * image_url;
@property (nonatomic, retain) NSNumber * note_type;
@property (nonatomic, retain) NSNumber * latitude;
@property (nonatomic, retain) NSNumber * hAccuracy;
@property (nonatomic, retain) NSDate * recorded;
@property (nonatomic, retain) NSNumber * altitude;
@property (nonatomic, retain) NSData * image_data;
@property (nonatomic, retain) NSData * thumbnail;
@property (nonatomic, retain) NSDate * uploaded;
@property (nonatomic, retain) User *user;
@end