1234567891011121314151617181920 |
- //
- // RQSimulationResultsListItemViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/11.
- //
- #import "RQCommonItemViewModel.h"
- #import "RQScoreRecordModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQSimulationResultsListItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) RQScoreRecordModel *scoreRecordModel;
- // init
- - (instancetype)initWithRQScoreRecordModel:(RQScoreRecordModel *)scoreRecordModel;
- @end
- NS_ASSUME_NONNULL_END
|