12345678910111213141516171819202122232425262728 |
- //
- // RQTestQuestionsViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/8/12.
- //
- #import "RQCommonViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQTestQuestionsViewModel : RQCommonViewModel
- @property (nonatomic, readwrite, strong) RQExerciseModel *exerciseModel;
- //@property (nonatomic, readonly, assign) RQExerciseType exerciseType;
- /// homePageCarType
- @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
- /// homePageSubjectType
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- /// lastQuestionCommand
- @property (nonatomic, readwrite, strong) RACCommand *lastQuestionCommand;
- /// nextQuestionCommand
- @property (nonatomic, readwrite, strong) RACCommand *nextQuestionCommand;
- /// showCatalogueCommand
- @property (nonatomic, readwrite, strong) RACCommand *showCatalogueCommand;
- @end
- NS_ASSUME_NONNULL_END
|