1234567891011121314151617181920 |
- //
- // RQLearningMaterialsDetailViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2022/7/1.
- //
- #import "RQWebViewModel.h"
- #import "RQLearningMaterialsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQLearningMaterialsDetailViewModel : RQWebViewModel
- /// 数组
- @property (nonatomic, readonly, copy) NSArray *items;
- @property (nonatomic, readonly, strong) RQLearningMaterialsModel *learningMaterialsModel;
- - (void)updateViewModelWith:(RQLearningMaterialsDetailViewModel *)viewModel;
- @end
- NS_ASSUME_NONNULL_END
|