RQExerciseAnswerItemViewModel.h 622 B

12345678910111213141516171819202122
  1. //
  2. // RQExerciseAnswerItemViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/16.
  6. //
  7. #import "RQCommonItemViewModel.h"
  8. #import "RQYDTJSModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQExerciseAnswerItemViewModel : RQCommonItemViewModel
  11. @property (nonatomic, readonly, strong) NSString *answerString;
  12. @property (nonatomic, readonly, strong) RQYDTJSModel *ydtJSModel;
  13. @property (nonatomic, readonly, assign) CGFloat skillHeight;
  14. @property (nonatomic, readonly, strong) NSMutableAttributedString *skillString;
  15. // init
  16. - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel;
  17. @end
  18. NS_ASSUME_NONNULL_END