12345678910111213141516171819202122 |
- //
- // RQExerciseAnswerItemViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import "RQCommonItemViewModel.h"
- #import "RQYDTJSModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseAnswerItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) NSString *answerString;
- @property (nonatomic, readonly, strong) RQYDTJSModel *ydtJSModel;
- @property (nonatomic, readonly, assign) CGFloat skillHeight;
- @property (nonatomic, readonly, strong) NSMutableAttributedString *skillString;
- // init
- - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel;
- @end
- NS_ASSUME_NONNULL_END
|