2023-03-03 19:31:22 +08:00
|
|
|
//
|
|
|
|
// XPFindNewFriendTableViewCell.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by XY on 2023/3/3.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2023-03-09 21:44:59 +08:00
|
|
|
@class HomeRecommendRoomModel;
|
2023-03-03 19:31:22 +08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2023-03-13 19:50:02 +08:00
|
|
|
@protocol XPFindNewFriendTableViewCellDelegate <NSObject>
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2023-03-03 19:31:22 +08:00
|
|
|
@interface XPFindNewFriendTableViewCell : UITableViewCell
|
|
|
|
|
2023-03-09 21:44:59 +08:00
|
|
|
@property (nonatomic, strong) HomeRecommendRoomModel *roomInfo;
|
2023-03-06 18:41:25 +08:00
|
|
|
|
2023-03-13 19:50:02 +08:00
|
|
|
@property (nonatomic, weak) id<XPFindNewFriendTableViewCellDelegate> delegate;
|
|
|
|
|
2023-03-03 19:31:22 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|