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