123456789101112131415161718192021222324 |
- //
- // NYExerciseOptionItemViewModel.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 NYExerciseOptionItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) RQExerciseModel *exerciseModel;
- @property (nonatomic, readonly, strong) NSMutableAttributedString *optsString;
- @property (nonatomic, readonly, strong) UIColor *btnBgColor;
- @property (nonatomic, readonly, assign) RQExerciseOptionItemType exerciseOptionItemType;
- //@property (nonatomic, readonly, assign) RQExerciseType exerciseType;
- @property (nonatomic, readonly, assign) CGFloat labelHeight;
- /// init
- - (instancetype)initWithRQExerciseModel:(RQExerciseModel *)exerciseModel allOptionsArr:(NSArray *)allOptionsArr optString:(NSString *)optString;
- @end
- NS_ASSUME_NONNULL_END
|