RQLearningMaterialsDetailViewModel.h 508 B

1234567891011121314151617181920
  1. //
  2. // RQLearningMaterialsDetailViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/7/1.
  6. //
  7. #import "RQWebViewModel.h"
  8. #import "RQLearningMaterialsModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQLearningMaterialsDetailViewModel : RQWebViewModel
  11. /// 数组
  12. @property (nonatomic, readonly, copy) NSArray *items;
  13. @property (nonatomic, readonly, strong) RQLearningMaterialsModel *learningMaterialsModel;
  14. - (void)updateViewModelWith:(RQLearningMaterialsDetailViewModel *)viewModel;
  15. @end
  16. NS_ASSUME_NONNULL_END