123456789101112131415161718192021222324252627 |
- //
- // RQMainTabBarViewModel.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/21.
- // Copyright © 2018 张嵘. All rights reserved.
- // 主界面的视图的视图模型
- #import "RQTabBarViewModel.h"
- #import "RQHomePageViewModel.h"
- #import "RQSecondPageViewModel.h"
- #import "RQThirdPageViewModel.h"
- #import "RQFourthPageViewModel.h"
- @interface RQMainTabBarViewModel : RQTabBarViewModel
- /// The view model of `homePage` interface.
- @property (nonatomic, strong, readonly) RQHomePageViewModel *homePageViewModel;
- /// The view model of `secondPage` interface.
- @property (nonatomic, strong, readonly) RQSecondPageViewModel *secondPageViewModel;
- /// The view model of `thirdPage` interface.
- @property (nonatomic, strong, readonly) RQThirdPageViewModel *thirdPageViewModel;
- /// The view model of `fourthPage` interface.
- @property (nonatomic, strong, readonly) RQFourthPageViewModel *fourthPageViewModel;
- @end
|