1234567891011121314151617181920 |
- //
- // NYLIVideoDetailSubPageItemViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/11.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYLIVideoDetailSubPageItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) VideosItem *videosItem;
- // init
- - (instancetype)initWithVideosItem:(VideosItem *)videosItem;
- @end
- NS_ASSUME_NONNULL_END
|