RQVideoDetailViewModel.h 673 B

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