|
//
// liveContBO.m
// ThePaperHD
//
// Created by scar1900 on 15/3/10.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "liveContBO.h"
@implementation liveContBO
@synthesize contId,name,pubTime,images,videos,strongRelateCont,content,pubDate,textImages;
- (void)dealloc {
self.contId = nil;
self.name = nil;
self.pubTime = nil;
self.images = nil;
self.videos = nil;
self.strongRelateCont = nil;
self.content = nil;
self.pubDate = nil;
self.textImages = nil;
}
@end
|