28 lines
616 B
Objective-C
28 lines
616 B
Objective-C
//
|
|
// QXBanner.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXBanner : NSObject
|
|
//ID
|
|
@property (nonatomic,strong)NSString *bid;
|
|
//跳转地址id
|
|
@property (nonatomic,strong)NSString *aid;
|
|
/// 1纯展示 2文章 3房间 4个人主页
|
|
@property (nonatomic,strong)NSString *type;
|
|
/// 1站内引导页 2启动引导页 3首页轮播
|
|
@property (nonatomic,strong)NSString *show_type;
|
|
//页面
|
|
@property (nonatomic,strong)NSString *image;
|
|
/// type = 2 的跳转地址
|
|
@property (nonatomic,strong)NSString *url;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|