18 lines
309 B
Objective-C
18 lines
309 B
Objective-C
//
|
|
// YMMineInfoTableViewCell.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/23.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class UserInfoModel;
|
|
@interface XPMineUserInfoTableViewCell : UITableViewCell
|
|
///用户信息
|
|
@property (nonatomic,strong) UserInfoModel *userInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|