RQExerciseViewModel.h 867 B

123456789101112131415161718192021222324252627
  1. //
  2. // RQExerciseViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/12.
  6. //
  7. #import "RQCommonViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQExerciseViewModel : RQCommonViewModel
  10. //@property (nonatomic, readonly, assign) RQExerciseType exerciseType;
  11. /// homePageCarType
  12. @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
  13. /// homePageSubjectType
  14. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  15. /// homeSubPageType
  16. @property (nonatomic, readonly, assign) RQHomeSubPageType homeSubPageType;
  17. /// homeSubEditListType
  18. @property (nonatomic, readonly, assign) RQHomeSubEditListType homeSubEditListType;
  19. @property (nonatomic, readonly, copy) NSString *titleStr;
  20. @property (nonatomic, readonly, assign) NSInteger number;
  21. @property (nonatomic, readonly, copy) NSArray *questionArr;
  22. @end
  23. NS_ASSUME_NONNULL_END