CommentCell.h
313 字节
//
// CommentCell.h
// DreamSleep
//
// Created by peter on 2022/10/8.
//
#import <UIKit/UIKit.h>
#import "ComReplyModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 评论、部分回复cell
@interface CommentCell : UITableViewCell
@property (nonatomic, strong) ComReplyModel *comReplyModel;
@end
NS_ASSUME_NONNULL_END