28 lines
991 B
Objective-C
28 lines
991 B
Objective-C
//
|
|
// 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
|