12345678910111213141516171819202122232425 |
- //
- // NYExerciseTestingCentreViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/8/22.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "RQCommonGroupViewModel.h"
- #import "RQCommonItemViewModel.h"
- #import "RQYDTJSModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYExerciseTestingCentreGroupViewModel : RQCommonGroupViewModel
- @end
- @interface NYExerciseTestingCentreItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) RQYDTJSModel *ydtJSModel;
- - (instancetype)initWithRQYDTJSModel:(RQYDTJSModel *)ydtJSModel;
- @end
- NS_ASSUME_NONNULL_END
|