34 lines
811 B
Objective-C
34 lines
811 B
Objective-C
//
|
|
// TFBookStoreModel.h
|
|
// TFReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/22.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class TFBannerModel, TFBookStoreLabelModel, TFBookStoreMenusModel;
|
|
|
|
@interface TFBookStoreModel : NSObject
|
|
|
|
@property (nonatomic ,strong) NSArray <TFBannerModel *>*banner;
|
|
@property (nonatomic ,strong) NSArray <TFBookStoreLabelModel *>*label;
|
|
@property (nonatomic ,strong) NSArray <TFBookStoreMenusModel *> *menus_tabs;
|
|
@property (nonatomic ,strong) NSArray <NSString *>*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
|