20 lines
416 B
Objective-C
20 lines
416 B
Objective-C
//
|
|
// XPHomeAttentionCollectionViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/2.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class HomeLiveRoomModel, XPMineFootPrintModel;
|
|
@interface XPHomeAttentionCollectionViewCell : UICollectionViewCell
|
|
|
|
@property (nonatomic,strong) HomeLiveRoomModel *liveRoom;
|
|
@property (nonatomic, strong) XPMineFootPrintModel *recordRoom;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|