RQHomeSubPageVideoScrollItemViewModel.h 765 B

123456789101112131415161718192021
  1. //
  2. // RQHomeSubPageVideoScrollItemViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/11/11.
  6. //
  7. #import "RQCommonCollectionItemViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQHomeSubPageVideoScrollItemViewModel : RQCommonCollectionItemViewModel
  10. @property (nonatomic, readonly, strong) RQTreeListModel *treeListModel;
  11. @property (nonatomic, readonly, copy) NSArray *childrenItemArr;
  12. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  13. @property (nonatomic, readonly, assign) NSInteger section;
  14. - (instancetype)initWithChildrenItemArr:(NSArray *)childrenItemArr treeListModel:(RQTreeListModel *)treeListModel homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType section:(NSInteger)section;
  15. @end
  16. NS_ASSUME_NONNULL_END