CNLiveCommentListResult.h
659 Bytes
//
// CNLiveCommentListResult.h
// CNLiveChatManagerSDKDemo
//
// Created by cnliveJunBo on 17/6/6.
// Copyright © 2017年 cnlive. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CNLiveCommentDetailInfoResult.h"
@interface CNLiveCommentListResult : NSObject
// 下一页
@property (nonatomic, copy) NSString *next_cursor;
// 上一页
@property (nonatomic, copy) NSString *previous_cursor;
// 总页数
@property (nonatomic, copy) NSString *total_number;
// 总条数
@property (nonatomic, copy) NSString *total_columns;
// 评论详情数组
@property (nonatomic, strong) NSArray <CNLiveCommentDetailInfoResult *> *comments;
@end