1234567891011121314151617181920212223 |
- //
- // NYFailSpecialExerciseDetailItemModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/12/12.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYFailSpecialExerciseDetailItemModel : RQCommonCollectionItemViewModel
- @property (nonatomic, strong) NYFailItemPointDataModel *dataModel;
- @property (nonatomic, copy) NSString *itemPointTitle;
- - (instancetype)initWithTitle:(NSString *)title dataModel:(NYFailItemPointDataModel *)dataModel;
- @end
- NS_ASSUME_NONNULL_END
|