123456789101112131415161718192021222324 |
- //
- // NYLIVideoDetailViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/8.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import "RQCommonViewModel.h"
- #import "RQVideoDetailSubPageViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class RQPlaceVideoListModel;
- @interface NYLIVideoDetailViewModel : RQCommonViewModel
- @property (nonatomic, readonly, strong) RQTreeListModel *treeListModel;
- @property (nonatomic, readonly, strong) RQPlaceVideoListModel *placeVideoListModel;
- @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
|