1234567891011121314151617 |
- //
- // KBCategoryModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/4/28.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface KBCategoryModel : NSObject
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, strong) NSArray *itemList;
- @end
|