123456789101112131415161718192021222324252627282930 |
- //
- // RQExerciseToolBarItemViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseToolBarItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) RQExerciseModel *exerciseModel;
- /// homePageCarType
- @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
- /// homePageSubjectType
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- /// readingQuestionsAndAnswerCommand
- @property (nonatomic, readonly, strong) RACCommand *readingQuestionsAndAnswerCommand;
- /// skillExplanationCommand
- @property (nonatomic, readonly, strong) RACCommand *skillExplanationCommand;
- // init
- - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel
- homePageCarType:(RQHomePageCarType)homePageCarType
- homePageSubject:(RQHomePageSubjectType)homePageSubject
- readingQuestionsAndAnswerCommand:(RACCommand *)readingQuestionsAndAnswerCommand
- skillExplanationCommand:(RACCommand *)skillExplanationCommand;
- @end
- NS_ASSUME_NONNULL_END
|