LVCChannelDetailsModel.m
437 Bytes
//
// LVCChannelDetailsModel.m
// LiveVideoCloud
//
// Created by iOS on 17/3/27.
// Copyright © 2017年 cnlive. All rights reserved.
//
#import "LVCChannelDetailsModel.h"
@implementation LVCChannelDetailsModel
- (void)setValue:(id)value forUndefinedKey:(NSString *)key {
}
- (NSString *)description {
return [NSString stringWithFormat:@"mediaId:%@, type:%@, title:%@, img:%@",_mediaId,_type,_title,_img];
}
@end