123456789101112131415161718192021222324252627 |
- //
- // CollectionCommodity.h
- // FirstLink
- //
- // Created by unicode on 14-10-13.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import "Motis.h"
- @interface CollectItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *userID;
- @property (nonatomic, strong) NSString *photoURL;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *operatnStatus;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *referPrice;
- @property (nonatomic, strong) NSString *source;
- @property (nonatomic, assign) BOOL isCollect;
- @end
|