19 lines
314 B
Objective-C
19 lines
314 B
Objective-C
//
|
|
// XPMineFansTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class FansInfoModel;
|
|
@interface XPMineFansTableViewCell : UITableViewCell
|
|
///粉丝信息
|
|
@property (nonatomic,strong) FansInfoModel *fansInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|