// // MOSystemNormalCell.h // TUIChat // // Created by SuperC on 2025/5/16. //z #import #import "MOSystemNormalCellData.h" NS_ASSUME_NONNULL_BEGIN @interface MOSystemNormalCell : TUICommonTableViewCell @property (nonatomic, strong) UIView *bgView; @property (nonatomic, strong) UIImageView *iconImgView; @property (nonatomic, strong) UILabel *groupLabel; @property (nonatomic, strong) UILabel *titleLab; @property (nonatomic, strong) UILabel *timeLab; @property (nonatomic, strong) UIImageView *pictureView; @property (nonatomic, strong) UILabel *contentLab; @property (nonatomic, strong) UIView *detailsView; @property (nonatomic, strong) MOSystemNormalCellData *dataModel; - (void)fillWithData:(MOSystemNormalCellData *)data; @end NS_ASSUME_NONNULL_END