21 lines
364 B
Objective-C
21 lines
364 B
Objective-C
//
|
|
// YMNewUserRechargeCollectionViewCell.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/7/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class FirstRechargeRewardModel;
|
|
@interface XPNewUserRechargeCollectionViewCell : UICollectionViewCell
|
|
|
|
///奖励的模型
|
|
@property (nonatomic,strong) FirstRechargeRewardModel *rewardInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|