123456789101112131415161718192021 |
- //
- // CTMediator+UserCenter.h
- // Asteria
- //
- // Created by iOS on 2023/6/5.
- //
- #import <CTMediator/CTMediator.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CTMediator (UserCenter)
- /// 个人中心首页
- -(UIViewController *)getUserCenterVc:(NSDictionary *)params;
- -(Class)userCenterVcClass;
- @end
- NS_ASSUME_NONNULL_END
|