RQSimulationResultsViewModel.h 367 B

12345678910111213141516171819
  1. //
  2. // RQSimulationResultsViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/6.
  6. //
  7. #import "RQCommonViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQSimulationResultsViewModel : RQCommonViewModel
  10. /// 数组
  11. @property (nonatomic, readonly, copy) NSArray *items;
  12. /// 总数
  13. @property (nonatomic, readonly, copy) NSString *totalStr;
  14. @end
  15. NS_ASSUME_NONNULL_END