21 lines
471 B
C
21 lines
471 B
C
|
|
//
|
||
|
|
// QXRedBagRecordViewController.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/10/11.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "QXBaseViewController.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXRedBagRecordViewController : QXBaseViewController
|
||
|
|
@property (nonatomic,strong)NSString *redbagId;
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface QXRedBagRecordCell : UITableViewCell
|
||
|
|
@property (nonatomic,strong)QXDrawRedpacketRecordModel *recordModel;
|
||
|
|
+(instancetype)cellWithTabelView:(UITableView*)tableView;
|
||
|
|
@end
|
||
|
|
NS_ASSUME_NONNULL_END
|