// // RQSimulationResultsListItemViewModel.m // SDJK // // Created by 张嵘 on 2021/8/11. // #import "RQSimulationResultsListItemViewModel.h" @interface RQSimulationResultsListItemViewModel () @property (nonatomic, readwrite, strong) RQScoreRecordModel *scoreRecordModel; @end @implementation RQSimulationResultsListItemViewModel // init - (instancetype)initWithRQScoreRecordModel:(RQScoreRecordModel *)scoreRecordModel { if (self = [super init]) { self.scoreRecordModel = scoreRecordModel; } return self; } @end