// // TFBookStoreModel.h // TFReader // // Created by 谢腾飞 on 2020/12/22. // Copyright © 2020 xtfei_2011@126.com. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @class TFBannerModel, TFBookStoreLabelModel, TFBookStoreMenusModel; @interface TFBookStoreModel : NSObject @property (nonatomic ,strong) NSArray *banner; @property (nonatomic ,strong) NSArray *label; @property (nonatomic ,strong) NSArray *menus_tabs; @property (nonatomic ,strong) NSArray *hot_word; @end @interface TFBookStoreMenusModel : NSObject @property (nonatomic ,copy) NSString *title; @property (nonatomic ,copy) NSString *icon; @property (nonatomic ,copy) NSString *action; @end NS_ASSUME_NONNULL_END