|
//
// topicInfoPageVO.h
// ThePaperHD
//
// Created by scar1900 on 15/5/11.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface topicInfoPageVO : NSObject {
NSDictionary *topicInfo;
NSArray *relateConts;
NSArray *relateTopics;
NSString *waitReplyNum;
NSString *replyedNum;
}
@property (nonatomic, copy) NSDictionary *topicInfo;
@property (nonatomic, copy) NSArray *relateConts;
@property (nonatomic, copy) NSArray *relateTopics;
@property (nonatomic, copy) NSString *waitReplyNum;
@property (nonatomic, copy) NSString *replyedNum;
/*
父元素名称 子元素名称 约束 属性描述
topicInfo 1 话题基本信息。
见 topicInfo对象
relateConts 1 相关新闻列表,listContObject对象
relateTopics 1 相关话题列表,topicInfo对象
waitReplyNum ? 待回复数,在forwordType=6时返回
replyedNum ? 已回复数,在forwordType=6时返回
*/
@end
|