Today's Menu  Portugal
journal and plan nutrition
Meal+CoreDataProperties.h
Go to the documentation of this file.
1 //
2 // Meal+CoreDataProperties.h
3 //
4 //
5 // Created by Don Zeek on 1/7/19.
6 //
7 //
8 
9 #import "Meal+CoreDataClass.h"
10 
11 
12 NS_ASSUME_NONNULL_BEGIN
13 
15 
16 + (NSFetchRequest<Meal *> *)fetchRequest;
17 
18 @property (nullable, nonatomic, copy) NSDate *consumeDate;
19 @property (nullable, nonatomic, copy) NSNumber *galleryNumber;
20 @property (nullable, nonatomic, copy) NSDate *orderDate;
21 @property (nullable, nonatomic, retain) NSData *photo;
22 @property (nullable, nonatomic, copy) NSString *randomkey;
23 @property (nullable, nonatomic, copy) NSNumber *rating;
24 @property (nullable, nonatomic, copy) NSString *caption;
25 @property (nullable, nonatomic, retain) NSSet<MenuItem *> *containedItem;
26 
27 @end
28 
30 
31 - (void)addContainedItemObject:(MenuItem *)value;
32 - (void)removeContainedItemObject:(MenuItem *)value;
33 - (void)addContainedItem:(NSSet<MenuItem *> *)values;
34 - (void)removeContainedItem:(NSSet<MenuItem *> *)values;
35 
36 @end
37 
38 NS_ASSUME_NONNULL_END