RQVideoDetailViewModel.h 719 B

1234567891011121314151617181920212223
  1. //
  2. // RQVideoDetailViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/10/26.
  6. //
  7. #import "RQCommonViewModel.h"
  8. #import "RQVideoDetailSubPageViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class RQPlaceVideoListModel;
  11. @interface RQVideoDetailViewModel : RQCommonViewModel
  12. @property (nonatomic, readonly, strong) RQTreeListModel *treeListModel;
  13. @property (nonatomic, readonly, strong) RQPlaceVideoListModel *placeVideoListModel;
  14. @property (nonatomic, readonly, assign) NSInteger index;
  15. @property (nonatomic, readonly, strong) NSIndexPath *indexPath;
  16. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  17. @property (nonatomic, readonly, strong) VideosItem *videosItem;
  18. @end
  19. NS_ASSUME_NONNULL_END