-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser+CoreDataProperties.h
More file actions
48 lines (35 loc) · 1.34 KB
/
User+CoreDataProperties.h
File metadata and controls
48 lines (35 loc) · 1.34 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
//
// User+CoreDataProperties.h
// Twitter
//
// Created by harsh.man on 21/09/16.
// Copyright © 2016 Directi. All rights reserved.
//
#import "User.h"
NS_ASSUME_NONNULL_BEGIN
@interface User (CoreDataProperties)
+ (NSFetchRequest<User *> *)fetchRequest;
@property (nullable, nonatomic, copy) NSString *userID;
@property (nullable, nonatomic, copy) NSString *name;
@property (nullable, nonatomic, copy) NSString *profileImageURL;
@property (nullable, nonatomic, copy) NSString *screenName;
@property (nullable, nonatomic, copy) NSString *tagline;
@property (nullable, nonatomic, retain) NSSet<User *> *followers;
@property (nullable, nonatomic, retain) NSSet<User *> *following;
@property (nullable, nonatomic, retain) NSSet<Tweet *> *tweets;
@end
@interface User (CoreDataGeneratedAccessors)
- (void)addFollowersObject:(User *)value;
- (void)removeFollowersObject:(User *)value;
- (void)addFollowers:(NSSet<User *> *)values;
- (void)removeFollowers:(NSSet<User *> *)values;
- (void)addFollowingObject:(User *)value;
- (void)removeFollowingObject:(User *)value;
- (void)addFollowing:(NSSet<User *> *)values;
- (void)removeFollowing:(NSSet<User *> *)values;
- (void)addTweetsObject:(Tweet *)value;
- (void)removeTweetsObject:(Tweet *)value;
- (void)addTweets:(NSSet<Tweet *> *)values;
- (void)removeTweets:(NSSet<Tweet *> *)values;
@end
NS_ASSUME_NONNULL_END