Today's Menu  Portugal
journal and plan nutrition
MenuItem+CoreDataProperties.h
Go to the documentation of this file.
1 //
2 // MenuItem+CoreDataProperties.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 6/13/18.
6 // Copyright © 2018 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 //
9 
11 
12 
13 NS_ASSUME_NONNULL_BEGIN
14 
16 
17 + (NSFetchRequest<MenuItem *> *)fetchRequest;
18 
19 @property (nullable, nonatomic, copy) NSString *bodytext;
20 @property (nullable, nonatomic, copy) NSNumber *galleryNumber;
21 @property (nullable, nonatomic, copy) NSNumber *galleryPositionNo;
22 @property (nullable, nonatomic, copy) NSString *name;
23 @property (nullable, nonatomic, retain) NSData *photo;
24 @property (nullable, nonatomic, copy) NSString *randomkey;
25 @property (nullable, nonatomic, copy) NSString *recipe;
26 @property (nullable, nonatomic, copy) NSString *uid;
27 @property (nullable, nonatomic, copy) NSString *usdaNumbers;
28 @property (nullable, nonatomic, copy) NSString *remoteUniqueIID;
29 @property (nullable, nonatomic, retain) NSSet<Meal *> *mealContaining;
30 
31 @end
32 
34 
35 - (void)addMealContainingObject:(Meal *)value;
36 - (void)removeMealContainingObject:(Meal *)value;
37 - (void)addMealContaining:(NSSet<Meal *> *)values;
38 - (void)removeMealContaining:(NSSet<Meal *> *)values;
39 
40 @end
41 
42 NS_ASSUME_NONNULL_END