123456789101112131415161718192021 |
- //
- // FKWantBuyProItem.h
- // FirstLink
- //
- // Created by 施昌鹏 on 16/8/18.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKWantBuyProItem : NSObject
- @property (nonatomic, strong) NSString *productPic;
- @property (nonatomic, strong) NSString *proTitle;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *brand;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *proId;
- @end
|