RQProfileViewController.m 467 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RQProfileViewController.m
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/21.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQProfileViewController.h"
  9. @interface RQProfileViewController ()
  10. /// viewModel
  11. @property (nonatomic, readonly, strong) RQProfileViewModel *viewModel;
  12. @end
  13. @implementation RQProfileViewController
  14. @dynamic viewModel;
  15. #pragma mark - SystemMethod
  16. - (void)viewDidLoad {
  17. [super viewDidLoad];
  18. }
  19. @end