25 lines
625 B
Objective-C
25 lines
625 B
Objective-C
//
|
|
// XPGiftItemCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPSendGiftView.h"
|
|
#import "XPGiftInfoView.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;
|
|
///当前展示的数据的类型
|
|
@property (nonatomic,assign) GiftSegmentType segmentType;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|