RQMainTabBarViewModel.h 909 B

123456789101112131415161718192021222324252627
  1. //
  2. // RQMainTabBarViewModel.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/21.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. // 主界面的视图的视图模型
  8. #import "RQTabBarViewModel.h"
  9. #import "RQHomePageViewModel.h"
  10. #import "RQSecondPageViewModel.h"
  11. #import "RQThirdPageViewModel.h"
  12. #import "RQFourthPageViewModel.h"
  13. @interface RQMainTabBarViewModel : RQTabBarViewModel
  14. /// The view model of `homePage` interface.
  15. @property (nonatomic, strong, readonly) RQHomePageViewModel *homePageViewModel;
  16. /// The view model of `secondPage` interface.
  17. @property (nonatomic, strong, readonly) RQSecondPageViewModel *secondPageViewModel;
  18. /// The view model of `thirdPage` interface.
  19. @property (nonatomic, strong, readonly) RQThirdPageViewModel *thirdPageViewModel;
  20. /// The view model of `fourthPage` interface.
  21. @property (nonatomic, strong, readonly) RQFourthPageViewModel *fourthPageViewModel;
  22. @end