1234567891011121314151617181920212223242526 |
- //
- // NYExerciseQuestionItemViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/10/31.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYExerciseQuestionItemViewModel : 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
|