12345678910111213141516171819202122 |
- //
- // RQDspVideoDetailItemViewModel.m
- // JSJP
- //
- // 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
|