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.
27 lines
991 B
27 lines
991 B
// |
|
// TFBookStoreLabelModel.h |
|
// WXReader |
|
// |
|
// Created by 谢腾飞 on 2020/12/2. |
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved. |
|
// |
|
|
|
#import "TFAdvertModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@class TFProductionModel; |
|
@interface TFBookStoreLabelModel : TFAdvertModel |
|
|
|
@property (nonatomic ,assign) NSInteger recommend_id; // 推荐位id |
|
@property (nonatomic ,assign) NSInteger style; // 展示风格 |
|
@property (nonatomic ,copy) NSString *label; // 名称 |
|
@property (nonatomic ,copy) NSString *total; // 漫画数 |
|
@property (nonatomic ,assign) BOOL can_more; // 是否有更多 true有,false没有 |
|
@property (nonatomic ,assign) BOOL can_refresh; // 是否有更多 true有,false没有 |
|
@property (nonatomic ,assign) NSInteger expire_time; |
|
@property (nonatomic ,strong) NSArray <TFProductionModel *>*list; // 作品列表 |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|