|
//
// liveDetailPageVO.h
// ThePaperHD
//
// Created by scar1900 on 15/3/10.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface liveDetailPageVO : NSObject {
NSDictionary *liveInfo;
NSArray *dateList;
NSString *nextUrl;
NSArray *topList;
}
@property (nonatomic, copy) NSDictionary *liveInfo;
@property (nonatomic, copy) NSArray *dateList;
@property (nonatomic, copy) NSString *nextUrl;
@property (nonatomic, copy) NSArray *topList;
@end
/*
liveInfo 1 直播的基本信息,见下面liveInfo列表
包括名字(name)、图片地址(pic)、直播栏目ID(nodeId),互动总数(interactionNum)
dateList 1 按日期组合
dateList pubDate 1 发布日期,格式:yyyy-mm-dd
dateList contList 1 新闻列表,见下面liveCont列表
nextUrl 1 加载更多的地址,如果为空则表示已经是最后一页了。
topList ? 置顶列表
*/
|