-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMeme.h
More file actions
53 lines (45 loc) · 1.87 KB
/
Meme.h
File metadata and controls
53 lines (45 loc) · 1.87 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// Meme.h
// Meemi
//
// Created by Giacomo Tufano on 08/06/10.
// Copyright 2010 Giacomo Tufano (gt@ilTofa.it). All rights reserved.
//
#import <CoreData/CoreData.h>
@class User;
@interface Meme : NSManagedObject
{
}
@property (nonatomic, retain) NSNumber * qta_replies;
@property (nonatomic, retain) NSString * location;
@property (nonatomic, retain) NSString * posted_from;
@property (nonatomic, retain) NSDate * dt_last_movement;
@property (nonatomic, retain) NSString * link;
@property (nonatomic, retain) NSString * image_medium;
@property (nonatomic, retain) NSDate * event_when;
@property (nonatomic, retain) NSString * event_name;
@property (nonatomic, retain) NSData * image;
@property (nonatomic, retain) NSString * image_medium_url;
@property (nonatomic, retain) NSData * image_small;
@property (nonatomic, retain) NSNumber * new_replies;
@property (nonatomic, retain) NSNumber * is_favorite;
@property (nonatomic, retain) NSString * event_where;
@property (nonatomic, retain) NSNumber * is_reshare;
@property (nonatomic, retain) NSString * reply_screen_name;
@property (nonatomic, retain) NSString * quote_source;
@property (nonatomic, retain) NSString * image_small_url;
@property (nonatomic, retain) NSString * video;
@property (nonatomic, retain) NSString * screen_name;
@property (nonatomic, retain) NSString * sent_to;
@property (nonatomic, retain) NSDate * date_time;
@property (nonatomic, retain) NSNumber * id;
@property (nonatomic, retain) NSNumber * new_meme;
@property (nonatomic, retain) NSNumber * reply_id;
@property (nonatomic, retain) NSNumber * private_meme;
@property (nonatomic, retain) NSString * channels;
@property (nonatomic, retain) NSString * meme_type;
@property (nonatomic, retain) NSNumber * special;
@property (nonatomic, retain) NSString * content;
@property (nonatomic, retain) NSString * image_url;
@property (nonatomic, retain) User * user;
@end