12345678910111213141516171819202122 |
- //
- // KBFindHotSearchModel.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/23.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface KBFindHotSearchModel : NSObject <YYModel>
- @property (nonatomic, copy) NSString *icon;
- @property (nonatomic, strong) NSNumber *position;
- @property (nonatomic, strong) NSNumber *Id;
- @property (nonatomic, copy) NSString *keyword;
- @property (nonatomic, strong) NSNumber *show_type;
- @property (nonatomic, strong) NSNumber *is_show_list;
- @property (nonatomic, strong) NSNumber *type;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, copy) NSString *url;
- @end
|