NYExerciseTestingCentreViewModel.h 578 B

12345678910111213141516171819202122232425
  1. //
  2. // NYExerciseTestingCentreViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/8/22.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonGroupViewModel.h"
  9. #import "RQCommonItemViewModel.h"
  10. #import "RQYDTJSModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface NYExerciseTestingCentreGroupViewModel : RQCommonGroupViewModel
  13. @end
  14. @interface NYExerciseTestingCentreItemViewModel : RQCommonItemViewModel
  15. @property (nonatomic, readonly, strong) RQYDTJSModel *ydtJSModel;
  16. - (instancetype)initWithRQYDTJSModel:(RQYDTJSModel *)ydtJSModel;
  17. @end
  18. NS_ASSUME_NONNULL_END