12345678910111213141516171819 |
- //
- // RQSimulationResultsViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/6.
- //
- #import "RQCommonViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQSimulationResultsViewModel : RQCommonViewModel
- /// 数组
- @property (nonatomic, readonly, copy) NSArray *items;
- /// 总数
- @property (nonatomic, readonly, copy) NSString *totalStr;
- @end
- NS_ASSUME_NONNULL_END
|