| 12345678910111213141516171819202122232425 |
- //
- // MOLiveMsgSystemTipCell.h
- // MiMoLive
- //
- // Created by SuperC on 2024/2/17.
- //
- #define MOLiveMsgSystemTipCell_ID @"MOLiveMsgSystemTipCell_ID" //复用id
- #import <UIKit/UIKit.h>
- #import "MOMsgContentTextView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOLiveMsgSystemTipCell : UITableViewCell
- @property (nonatomic, strong) UIView *bgView;
- @property (nonatomic, strong) MOMsgContentTextView *contentTextView;
- @property (nonatomic, strong) MORtmEntity *cellModel;
- @end
- NS_ASSUME_NONNULL_END
|