RQExerciseQuestionItemViewModel.h 674 B

1234567891011121314151617181920212223
  1. //
  2. // RQExerciseQuestionItemViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/16.
  6. //
  7. #import "RQCommonItemViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQExerciseQuestionItemViewModel : RQCommonItemViewModel
  10. @property (nonatomic, readonly, strong) RQExerciseModel *exerciseModel;
  11. @property (nonatomic, readonly, strong) NSString *typeString;
  12. @property (nonatomic, readonly, strong) NSMutableAttributedString *qusetionString;
  13. @property (nonatomic, readonly, strong) NSString *imageString;
  14. @property (nonatomic, readonly, strong) NSString *videoString;
  15. // init
  16. - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel;
  17. @end
  18. NS_ASSUME_NONNULL_END