18 lines
326 B
Objective-C
18 lines
326 B
Objective-C
//
|
|
// XPGiftCountCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPGiftCountModel;
|
|
@interface XPGiftCountCollectionViewCell : UICollectionViewCell
|
|
///
|
|
@property (nonatomic,strong) XPGiftCountModel *countModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|