12345678910111213141516171819202122 |
- //
- // KBCategoryChannelModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/10/9.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KBCategoryChannelModel : NSObject
- @property (nonatomic, copy) NSString *Id;
- @property (nonatomic, copy) NSString *name;
- //
- @property (nonatomic, copy) NSString *material_id;
- @end
- NS_ASSUME_NONNULL_END
|