// // AVVodItemModel.h // SellyCloudSDK_Example // #import NS_ASSUME_NONNULL_BEGIN @interface AVVodItemModel : NSObject @property (nonatomic, copy) NSString *url; @property (nonatomic, copy) NSString *cover; @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *type; // mp4, hls, flv, etc. + (instancetype)modelWithUrl:(NSString *)url cover:(NSString *)cover title:(NSString *)title type:(NSString *)type; @end NS_ASSUME_NONNULL_END