DSHPDRDynamicDetailsCommentModel.h
567 Bytes
//
// DSHPDRDynamicDetailsCommentModel.h
// DSCnliveShopSDK
//
// Created by zhaolin on 2019/8/13.
// Copyright © 2019 BIKE. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "DSHPDRDynamicDetailsCommentListModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface DSHPDRDynamicDetailsCommentModel : NSObject
/**
二级剩余评论数 (一级评论没用)
*/
@property (nonatomic,assign) NSUInteger count;
/**
目前显示的评论列表
*/
@property (nonatomic,copy) NSArray<DSHPDRDynamicDetailsCommentListModel*> * list;
@end
NS_ASSUME_NONNULL_END