Files
SellyCloudSDK_demo/Example/SellyCloudSDK/Play/AVVodItemModel.m

23 lines
480 B
Objective-C

//
// AVVodItemModel.m
// SellyCloudSDK_Example
//
#import "AVVodItemModel.h"
@implementation AVVodItemModel
+ (instancetype)modelWithUrl:(NSString *)url
cover:(NSString *)cover
title:(NSString *)title
type:(NSString *)type {
AVVodItemModel *model = [[AVVodItemModel alloc] init];
model.url = url;
model.cover = cover;
model.title = title;
model.type = type;
return model;
}
@end