// // RQDspVideoDetailItemViewModel.m // SDJK // // Created by RONGQING on 2022/1/20. // #import "RQDspVideoDetailItemViewModel.h" @interface RQDspVideoDetailItemViewModel () @property (nonatomic, readwrite, strong) VideosItem *videosItem; @end @implementation RQDspVideoDetailItemViewModel // init - (instancetype)initWithVideosItem:(VideosItem *)videosItem { if (self = [super init]) { self.videosItem = videosItem; } return self; } @end