12345678910111213141516171819202122 |
- //
- // Target_userCenter.m
- // Asteria
- //
- // Created by iOS on 2023/5/16.
- //
- #import "Target_userCenter.h"
- #import "ASUserCenterViewController.h"
- @implementation Target_userCenter
- - (UIViewController *)Action_getUserCenterVc:(NSDictionary *)params {
- ASUserCenterViewController *vc = [[ASUserCenterViewController alloc] init];
- return vc;
- }
- - (Class)Action_userCenterVcClass:(NSDictionary *)params {
- return ASUserCenterViewController.class;
- }
- @end
|