CNLiveCommentDetailInfoResult.h
741 Bytes
//
// CNLiveCommentDetailInfoResult.h
// CNLiveChatManagerSDKDemo
//
// Created by cnliveJunBo on 17/6/6.
// Copyright © 2017年 cnlive. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface CNLiveCommentDetailInfoResult : NSObject
// 评论ID
@property (nonatomic, copy) NSString *commentId;
// 节目ID
@property (nonatomic, copy) NSString *pid;
// 用户ID
@property (nonatomic, copy) NSString *uid;
// 昵称
@property (nonatomic, copy) NSString *nick;
// 评论者头像
@property (nonatomic, copy) NSString *facepath;
// 评论内容
@property (nonatomic, copy) NSString *content;
// 评论时间
@property (nonatomic, copy) NSString *created_at;
// 点赞数
@property (nonatomic, copy) NSString *praise;
@end