20 lines
422 B
Objective-C
20 lines
422 B
Objective-C
//
|
|
// QXGiftWallSubViewController.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/5.
|
|
//
|
|
|
|
#import "QXBaseViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXGiftWallSubViewController : QXBaseViewController<JXCategoryListContentViewDelegate>
|
|
/// 是否为已点亮
|
|
@property(nonatomic,assign)BOOL isLight;
|
|
/// 数据源
|
|
@property(nonatomic,strong)NSArray<QXUserGiftWallModel*> *giftArray;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|