Files
yinmeng-ios/xplan-ios/Main/ModuleKit/SendGiftView/View/Cell/XPGiftItemCollectionViewCell.h
2023-03-13 18:27:16 +08:00

22 lines
506 B
Objective-C

//
// XPGiftItemCollectionViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2021/11/12.
//
#import <UIKit/UIKit.h>
#import "XPSendGiftView.h"
NS_ASSUME_NONNULL_BEGIN
@class GiftInfoModel;
@interface XPGiftItemCollectionViewCell : UICollectionViewCell
///
@property (nonatomic,strong) GiftInfoModel *giftInfo;
///当前用户贵族等级
@property (nonatomic, assign) NSInteger curUserNobleLevel;
///使用的地方
@property (nonatomic,assign) SendGiftType usingplaceType;
@end
NS_ASSUME_NONNULL_END