// // PBPublishCommentCell.h // IphoneBIMe // // Created by zjf on 2019/1/18. // Copyright © 2019 ProBIM. All rights reserved. // #import @class PBProjectModel; @class PBCommentsModel; @interface PBPublishCommentCell : UITableViewCell @property (nonatomic, copy) void(^ReplyBlock)(PBCommentsModel *commentsModel); @property (nonatomic, copy) void(^deleteCommentsBlock)(void); @property (nonatomic, strong) PBProjectModel *projectModel; @property (nonatomic, strong) PBCommentsModel *commentsModel; @end