ReplyCell.h
285 字节
//
// ReplyCell.h
// DreamSleep
//
// Created by peter on 2022/10/9.
//
#import <UIKit/UIKit.h>
#import "ReplyModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 回复cell
@interface ReplyCell : UITableViewCell
@property (nonatomic, strong) ReplyModel *replyModel;
@end
NS_ASSUME_NONNULL_END