NYLIHomePageSimulationExamItemViewModel.h 701 B

1234567891011121314151617181920212223
  1. //
  2. // NYLIHomePageSimulationExamItemViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/2/14.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYLIHomePageSimulationExamItemViewModel : RQCommonCollectionItemViewModel
  11. @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
  12. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  13. @property (nonatomic, readwrite, copy) void (^operationLI)(void);
  14. /// init
  15. - (instancetype)initWithRQHomePageCarType:(RQHomePageCarType)homePageCarType homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType;
  16. @end
  17. NS_ASSUME_NONNULL_END