12345678910111213141516171819202122 |
- //
- // RQSimulationTestTopicsViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/6.
- //
- #import "RQCommonViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQSimulationTestTopicsViewModel : RQCommonViewModel
- @property (nonatomic, readonly, assign) RQExerciseType exerciseType;
- /// homePageCarType
- @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
- /// homePageSubjectType
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- /// homeSubPageType
- @property (nonatomic, readonly, assign) RQHomeSubPageType homeSubPageType;
- @end
- NS_ASSUME_NONNULL_END
|