Files
yuyin_ios/SweetParty/主类/狸猫新增/相亲房/LMSendSpecialCollectionViewCell.h

27 lines
784 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// LMSendSpecialCollectionViewCell.h
// SweetParty
//
// Created by Xmac on 2024/9/2.
//
#import <UIKit/UIKit.h>
#import "LMSpecialGiftModel.h"
NS_ASSUME_NONNULL_BEGIN
static NSString *LMSendSpecialCollectionViewCellID = @"LMSendSpecialCollectionViewCellID";
@interface LMSendSpecialCollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *itemBGIcon;
@property (weak, nonatomic) IBOutlet UIImageView *giftBaseIMG;
@property (weak, nonatomic) IBOutlet UILabel *giftPriceLabel;
@property (weak, nonatomic) IBOutlet UILabel *giftNameLabel;
@property (weak, nonatomic) IBOutlet UIView *tagCover;
@property (weak, nonatomic) IBOutlet UILabel *tagNameLabel;
@property (nonatomic, strong) LMSpecialGiftModel *model;
@end
NS_ASSUME_NONNULL_END