Files
featherVoice/QXLive/Mine(音域)/View/礼物墙/QXMineGiftWallCell.h
2025-11-06 13:04:04 +08:00

28 lines
875 B
Objective-C

//
// QXMineGiftWallCell.h
// QXLive
//
// Created by 启星 on 2025/11/5.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface QXMineGiftWallCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
@property (weak, nonatomic) IBOutlet UILabel *countLabel;
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
@property (weak, nonatomic) IBOutlet UIImageView *giftImageView;
@property (weak, nonatomic) IBOutlet UIImageView *userImageView1;
@property (weak, nonatomic) IBOutlet UIImageView *userImageView2;
@property (weak, nonatomic) IBOutlet UIImageView *userImageView3;
@property (weak, nonatomic) IBOutlet UILabel *userCountLabel;
@property (weak, nonatomic) IBOutlet UIButton *giftCoinBtn;
@property (nonatomic,assign)BOOL isLight;
@property (nonatomic,strong)QXUserGiftWallModel *model;
@end
NS_ASSUME_NONNULL_END