23 lines
374 B
C
23 lines
374 B
C
|
|
//
|
||
|
|
// ProfileCardViewController.h
|
||
|
|
// Youth
|
||
|
|
//
|
||
|
|
// Created by mambaxie on 2022/1/2.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "PYBaseViewController.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface ProfileCardViewController : PYBaseViewController
|
||
|
|
|
||
|
|
- (instancetype)initWithUserID:(int)userID;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) User *user;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) User *originUser;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|