1234567891011121314151617181920212223 |
- //
- // RQExerciseQuestionItemViewModel.h
- // SDJK
- //
- // 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, strong) NSString *imageString;
- @property (nonatomic, readonly, strong) NSString *videoString;
- // init
- - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel;
- @end
- NS_ASSUME_NONNULL_END
|