RQTestResultsViewModel.h 820 B

123456789101112131415161718192021222324252627
  1. //
  2. // RQTestResultsViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/25.
  6. //
  7. #import "RQBaseViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQTestResultsViewModel : RQBaseViewModel
  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. @property (nonatomic, readonly, copy) NSString *titleStr;
  18. @property (nonatomic, readonly, assign) NSInteger score;
  19. @property (nonatomic, readonly, assign) NSUInteger count;
  20. @property (nonatomic, readonly, copy) NSArray *questionArray;
  21. @end
  22. NS_ASSUME_NONNULL_END