17 lines
326 B
Objective-C
17 lines
326 B
Objective-C
//
|
|
// XPNewHomePlayItemCollectionViewCell.h
|
|
// YuMi
|
|
//
|
|
// Created by YuMi on 2022/10/8.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class HomePlayRoomModel;
|
|
@interface XPNewHomePlayItemCollectionViewCell : UICollectionViewCell
|
|
@property (nonatomic,strong) HomePlayRoomModel *roomInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|