12345678910111213141516171819202122232425 |
- //
- // RQExerciseQuestionItemViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseQuestionItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) RQExerciseModel *exerciseModel;
- @property (nonatomic, readonly, strong) NSString *typeString;
- @property (nonatomic, readonly, strong) NSMutableAttributedString *qusetionString;
- @property (nonatomic, readonly, assign) CGFloat labelHeight;
- @property (nonatomic, readonly, assign) CGFloat imageHeight;
- @property (nonatomic, readonly, strong) NSString *imageString;
- @property (nonatomic, readonly, strong) NSString *videoString;
- // init
- - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel;
- @end
- NS_ASSUME_NONNULL_END
|