NYLIVideoDetailViewModel.h 772 B

123456789101112131415161718192021222324
  1. //
  2. // NYLIVideoDetailViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/2/8.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonViewModel.h"
  9. #import "RQVideoDetailSubPageViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class RQPlaceVideoListModel;
  12. @interface NYLIVideoDetailViewModel : RQCommonViewModel
  13. @property (nonatomic, readonly, strong) RQTreeListModel *treeListModel;
  14. @property (nonatomic, readonly, strong) RQPlaceVideoListModel *placeVideoListModel;
  15. @property (nonatomic, readonly, assign) NSInteger index;
  16. @property (nonatomic, readonly, strong) NSIndexPath *indexPath;
  17. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  18. @property (nonatomic, readonly, strong) VideosItem *videosItem;
  19. @end
  20. NS_ASSUME_NONNULL_END