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