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.
24 lines
678 B
24 lines
678 B
4 years ago
|
//
|
||
|
// TFBannerModel.h
|
||
|
// TFReader
|
||
|
//
|
||
|
// Created by 谢腾飞 on 2020/12/11.
|
||
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TFBannerModel : NSObject
|
||
|
|
||
|
@property (nonatomic ,copy) NSString *content; // 根据动作类型对于的漫画则为漫画id
|
||
|
@property (nonatomic ,copy) NSString *name; //作品名
|
||
|
@property (nonatomic ,copy) NSString *image; // 封面
|
||
|
@property (nonatomic ,copy) NSString *color; // 封面的背景色
|
||
|
@property (nonatomic ,assign) NSInteger action; // 动作类型, 1:跳漫画,2:scheme跳转,3:外部链接
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|