2023-07-06 16:54:13 +08:00
|
|
|
//
|
|
|
|
// MineInfoViewController.h
|
2023-08-10 16:25:34 +08:00
|
|
|
// xplan-ios
|
2023-07-06 16:54:13 +08:00
|
|
|
//
|
2023-08-10 16:25:34 +08:00
|
|
|
// Created by 冯硕 on 2021/9/22.
|
2023-07-06 16:54:13 +08:00
|
|
|
//
|
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
#import "MvpViewController.h"
|
2023-07-06 16:54:13 +08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
@interface XPMineUserInfoViewController : MvpViewController
|
|
|
|
///用户的id
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic,assign) NSInteger uid;
|
|
|
|
|
2023-08-10 16:25:34 +08:00
|
|
|
@property (nonatomic,assign) BOOL isFormCandyTree;
|
|
|
|
|
|
|
|
|
2023-07-06 16:54:13 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|