ArticleCell.h
297 字节
//
// ArticleCell.h
// DreamSleep
//
// Created by peter on 2022/10/19.
//
#import "BaseTableViewCell.h"
#import "ArticleModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 文章cell
@interface ArticleCell : BaseTableViewCell
@property (nonatomic, strong) ArticleModel *model;
@end
NS_ASSUME_NONNULL_END