RQVideoDetailSubPageItemViewModel.h 385 B

123456789101112131415161718
  1. //
  2. // RQVideoDetailSubPageItemViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/11/5.
  6. //
  7. #import "RQCommonItemViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQVideoDetailSubPageItemViewModel : RQCommonItemViewModel
  10. @property (nonatomic, readonly, strong) VideosItem *videosItem;
  11. // init
  12. - (instancetype)initWithVideosItem:(VideosItem *)videosItem;
  13. @end
  14. NS_ASSUME_NONNULL_END