|
//
// topicInfoPageVO.m
// ThePaperHD
//
// Created by scar1900 on 15/5/11.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "topicInfoPageVO.h"
@implementation topicInfoPageVO
@synthesize topicInfo,relateConts,relateTopics,waitReplyNum,replyedNum;
- (void)dealloc {
self.topicInfo = nil;
self.relateTopics = nil;
self.relateConts = nil;
self.waitReplyNum = nil;
self.relateConts = nil;
}
@end
|