// // NYLIVideoDetailSubFooterViewModel.m // jiaPei // // Created by Ning.ge on 2025/2/12. // Copyright © 2025 JCZ. All rights reserved. // #import "NYLIVideoDetailSubFooterViewModel.h" @interface NYLIVideoDetailSubFooterViewModel () @property (nonatomic, readwrite, strong) VideosItem *videosItem; @end @implementation NYLIVideoDetailSubFooterViewModel // init - (instancetype)initWithVideosItem:(VideosItem *)videosItem { if (self = [super init]) { self.videosItem = videosItem; } return self; } - (NSString *)itemClassName{ return @"NYLIVideoDetailSubFooterCell"; } @end