OfficialMessageCell.h 482 字节
//
//  OfficialMessageCell.h
//  DreamSleep
//
//  Created by peter on 2022/10/14.
//

#import "BaseTableViewCell.h"
#import "OfficialMessageModel.h"

NS_ASSUME_NONNULL_BEGIN

/// 查看所有内容
typedef void(^ShowAllContentBlock)(void);

/// 社区列表官方消息cell
@interface OfficialMessageCell : BaseTableViewCell
@property (nonatomic, strong) OfficialMessageModel *model;
@property (nonatomic, copy) ShowAllContentBlock showAllContentBlock;
@end

NS_ASSUME_NONNULL_END