// // MOUserLinkCell.h // TUIChat // // Created by SuperC on 2025/10/13. // #import #import "MOUserLinkCellData.h" NS_ASSUME_NONNULL_BEGIN @interface MOUserLinkCell : TUIBubbleMessageCell @property (nonatomic, strong) UIView *bgView; @property (nonatomic, strong) UILabel *titleLab; @property (nonatomic, strong) UILabel *contentLab; @property (nonatomic, strong) UIView *lineView; @property (nonatomic, strong) UILabel *detailTagLab; @property (nonatomic, strong) UIImageView *arrowImgView; @property (nonatomic, strong) UIButton *actionBtn; @property (nonatomic, strong) MOUserLinkCellData *dataModel; - (void)fillWithData:(MOUserLinkCellData *)data; @end NS_ASSUME_NONNULL_END