RQSimulationResultsListItemViewModel.h 459 B

1234567891011121314151617181920
  1. //
  2. // RQSimulationResultsListItemViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/11.
  6. //
  7. #import "RQCommonItemViewModel.h"
  8. #import "RQScoreRecordModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQSimulationResultsListItemViewModel : RQCommonItemViewModel
  11. @property (nonatomic, readonly, strong) RQScoreRecordModel *scoreRecordModel;
  12. // init
  13. - (instancetype)initWithRQScoreRecordModel:(RQScoreRecordModel *)scoreRecordModel;
  14. @end
  15. NS_ASSUME_NONNULL_END