// // QXMineSongListCell.h // QXLive // // Created by 启星 on 2025/11/13. // #import #import "QXUserSongListModel.h" NS_ASSUME_NONNULL_BEGIN @interface QXMineSongListCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *songNameLabel; @property (weak, nonatomic) IBOutlet UILabel *giftInfoLabel; @property (weak, nonatomic) IBOutlet UILabel *giftPriceLabel; @property (nonatomic,strong)QXUserSongListModel *model; @property (weak, nonatomic) IBOutlet UIImageView *giftImageView; +(instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END