123456789101112131415161718 |
- //
- // RQDspVideoDetailItemViewModel.h
- // JSJP
- //
- // Created by RONGQING on 2022/1/20.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQDspVideoDetailItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) VideosItem *videosItem;
- // init
- - (instancetype)initWithVideosItem:(VideosItem *)videosItem;
- @end
- NS_ASSUME_NONNULL_END
|