18 lines
339 B
Objective-C
18 lines
339 B
Objective-C
//
|
|
// XPGiftUserCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/9.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPGiftUserInfoModel;
|
|
@interface XPGiftUserCollectionViewCell : UICollectionViewCell
|
|
///数据模型
|
|
@property (nonatomic,strong) XPGiftUserInfoModel *userInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|