| 123456789101112131415161718192021222324 |
- //
- // MOUserNotificationCell.h
- // TUIChat
- //
- // Created by SuperC on 2025/10/13.
- //
- #import <TIMCommon/TIMCommonModel.h>
- #import "MOUserNotificationCellData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOUserNotificationCell : TUICommonTableViewCell
- @property (nonatomic, strong) UILabel *titleLab;
- @property (nonatomic, strong) UILabel *contentLab;
- @property (nonatomic, strong) MOUserNotificationCellData *dataModel;
- - (void)fillWithData:(MOUserNotificationCellData *)data;
- @end
- NS_ASSUME_NONNULL_END
|