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