123456789101112131415161718 |
- //
- // RQHomeSubPageVideoItemViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/11/9.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHomeSubPageVideoItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) VideosItem *videosItem;
- - (instancetype)initWithVideosItem:(VideosItem *)videosItem;
- @end
- NS_ASSUME_NONNULL_END
|