MajorCommentCell.h
308 字节
//
// MajorCommentCell.h
// DreamSleep
//
// Created by peter on 2022/10/9.
//
#import <UIKit/UIKit.h>
#import "CommentModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 主评论cell
@interface MajorCommentCell : UITableViewCell
@property (nonatomic, strong) CommentModel *commentModel;
@end
NS_ASSUME_NONNULL_END