123456789101112131415161718192021 |
- //
- // RQHomeSubPageVideoScrollViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/11/11.
- //
- #import "RQCommonViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHomeSubPageVideoScrollViewModel : RQCommonViewModel
- @property (nonatomic, readonly, strong) RQTreeListModel *treeListModel;
- @property (nonatomic, readonly, assign) NSInteger index;
- @property (nonatomic, readonly, strong) NSIndexPath *myIndexPath;
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readonly, copy) NSArray *videosItemArr;
- @end
- NS_ASSUME_NONNULL_END
|