21 lines
374 B
Objective-C
21 lines
374 B
Objective-C
//
|
|
// XPNewUserRechargeCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand 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
|