Files
yuyin_ios/SweetParty/主类/音悦新增/交友厅/YYJYSimiGiftCell.h

27 lines
629 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// YYJYSimiGiftCell.h
// YaYin
//
// Created by bj_szd on 2023/7/27.
// Copyright © 2023 YaYin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "YYJYSimiGiftModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface YYJYSimiGiftCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV;
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
@property (weak, nonatomic) IBOutlet UIButton *sendBtn;
@property (nonatomic, strong) YYJYSimiGiftModel *model;
@end
NS_ASSUME_NONNULL_END