RQTestQuestionsViewModel.h 869 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RQTestQuestionsViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/12.
  6. //
  7. #import "RQCommonViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQTestQuestionsViewModel : RQCommonViewModel
  10. @property (nonatomic, readwrite, strong) RQExerciseModel *exerciseModel;
  11. //@property (nonatomic, readonly, assign) RQExerciseType exerciseType;
  12. /// homePageCarType
  13. @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
  14. /// homePageSubjectType
  15. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  16. /// lastQuestionCommand
  17. @property (nonatomic, readwrite, strong) RACCommand *lastQuestionCommand;
  18. /// nextQuestionCommand
  19. @property (nonatomic, readwrite, strong) RACCommand *nextQuestionCommand;
  20. /// showCatalogueCommand
  21. @property (nonatomic, readwrite, strong) RACCommand *showCatalogueCommand;
  22. @end
  23. NS_ASSUME_NONNULL_END