You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
811 B
33 lines
811 B
// |
|
// 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
|
|
|