123456789101112131415161718192021 |
- //
- // RQHomeSubPageVideoScrollItemViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/11/11.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHomeSubPageVideoScrollItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQTreeListModel *treeListModel;
- @property (nonatomic, readonly, copy) NSArray *childrenItemArr;
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readonly, assign) NSInteger section;
- - (instancetype)initWithChildrenItemArr:(NSArray *)childrenItemArr treeListModel:(RQTreeListModel *)treeListModel homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType section:(NSInteger)section;
- @end
- NS_ASSUME_NONNULL_END
|