MOUserNotificationCell.h 507 B

123456789101112131415161718192021222324
  1. //
  2. // MOUserNotificationCell.h
  3. // TUIChat
  4. //
  5. // Created by SuperC on 2025/10/13.
  6. //
  7. #import <TIMCommon/TIMCommonModel.h>
  8. #import "MOUserNotificationCellData.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOUserNotificationCell : TUICommonTableViewCell
  11. @property (nonatomic, strong) UILabel *titleLab;
  12. @property (nonatomic, strong) UILabel *contentLab;
  13. @property (nonatomic, strong) MOUserNotificationCellData *dataModel;
  14. - (void)fillWithData:(MOUserNotificationCellData *)data;
  15. @end
  16. NS_ASSUME_NONNULL_END