123456789101112131415161718192021222324 |
- //
- // KBNineNineScrollChannelModel.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/29.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface KBNineNineScrollChannelModel : NSObject <YYModel>
- @property (nonatomic, copy) NSString *cid;
- @property (nonatomic, strong) NSNumber *position;
- @property (nonatomic, copy) NSString *img;
- @property (nonatomic, strong) NSNumber *Id;
- @property (nonatomic, copy) NSString *note;
- @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
|