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.
30 lines
1.0 KiB
30 lines
1.0 KiB
// |
|
// TFAdvertModel.h |
|
// WXReader |
|
// |
|
// Created by 谢腾飞 on 2020/12/1. |
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface TFAdvertModel : NSObject |
|
|
|
#pragma mark 广告相关 |
|
@property (nonatomic ,assign) NSUInteger advert_id; // 广告id |
|
@property (nonatomic ,assign) NSUInteger ad_url_type; // 跳转类型 1 内部 2 外部 |
|
@property (nonatomic ,copy) NSString *ad_title; // 广告标题 |
|
@property (nonatomic ,copy) NSString *ad_image; // 广告图片 |
|
@property (nonatomic ,copy) NSString *ad_skip_url; // 广告跳转地址 |
|
@property (nonatomic ,copy) NSString *ad_key; |
|
@property (nonatomic ,assign) NSUInteger ad_type; // 广告类型 0 不显示 1 内部广告 2 穿山甲广告 |
|
@property (nonatomic ,assign) NSInteger ad_width; |
|
@property (nonatomic ,assign) NSInteger ad_height; |
|
// 当前时间戳 |
|
@property (nonatomic ,copy) NSString *timestamp; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|