1234567891011121314151617181920 |
- //
- // KBShopModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/7/13.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface KBShopModel : NSObject
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *nick;
- @property (nonatomic, strong) NSString *pic_path;
- @property (nonatomic, strong) NSString *item_score;
- @property (nonatomic, strong) NSString *service_score;
- @property (nonatomic, strong) NSString *delivery_score;
- @end
|