-
Notifications
You must be signed in to change notification settings - Fork 0
/
PLMenuItem.h
30 lines (25 loc) · 942 Bytes
/
PLMenuItem.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
//
// PLMenuItem.h
// Plate
//
// Created by emileleon on 12/9/13.
// Copyright (c) 2013 Plate SF. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "JSONSerializable.h"
@interface PLMenuItem : NSObject <JSONSerializable, NSCopying>
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *plateId;
@property (nonatomic, strong) NSString *itemDescription;
@property (nonatomic, strong) NSString *allergies;
@property (nonatomic, strong) NSString *ingredients;
@property (nonatomic, strong) NSString *imageURL;
@property (nonatomic, strong) NSString *slug;
@property (nonatomic, assign) float price;
@property (nonatomic) int quantity;
@property (nonatomic) MenuItemType itemType;
@property (assign) BOOL isGlutenFree;
@property (assign) BOOL isVegan;
@property (assign) BOOL isVegetarian;
-(id)initWithName:(NSString *)itemName itemType:(MenuItemType)type itemId:(NSString *)itemId;
@end