RQHomeSubPageListItemViewModel.h 648 B

1234567891011121314151617181920212223
  1. //
  2. // RQHomeSubPageListItemViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/4.
  6. //
  7. #import "RQCommonItemViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQHomeSubPageListItemViewModel : RQCommonItemViewModel
  10. /// homePageCarType
  11. @property (nonatomic, readwrite, assign) RQHomePageCarType homePageCarType;
  12. /// homePageSubjectType
  13. @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
  14. /// homeSubPageType
  15. @property (nonatomic, readwrite, assign) RQHomeSubPageType homeSubPageType;
  16. /// gotoLocalTopicsCommand
  17. @property (nonatomic, readonly, strong) RACCommand *gotoLocalTopicsCommand;
  18. @end
  19. NS_ASSUME_NONNULL_END