123456789101112131415161718 |
- //
- // RQExerciseAnswerItemViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/16.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseAnswerItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) NSString *answerString;
- // init
- - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel;
- @end
- NS_ASSUME_NONNULL_END
|