// // RQTestResultsViewModel.h // SDJK // // Created by 张嵘 on 2021/8/25. // #import "RQBaseViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface RQTestResultsViewModel : RQBaseViewModel @property (nonatomic, readonly, assign) RQExerciseType exerciseType; /// homePageCarType @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType; /// homePageSubjectType @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType; /// homeSubPageType @property (nonatomic, readonly, assign) RQHomeSubPageType homeSubPageType; @property (nonatomic, readonly, copy) NSString *titleStr; @property (nonatomic, readonly, assign) NSInteger score; @property (nonatomic, readonly, assign) NSUInteger count; @property (nonatomic, readonly, copy) NSArray *questionArray; @end NS_ASSUME_NONNULL_END