RQDspVideoDetailItemViewModel.h 379 B

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