18 lines
325 B
Objective-C
18 lines
325 B
Objective-C
//
|
|
// XPMineMatchCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/16.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPMineItemModel;
|
|
@interface XPMineHeadItemCollectionViewCell : UICollectionViewCell
|
|
///
|
|
@property (nonatomic,strong) XPMineItemModel *itemModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|