1234567891011121314151617 |
- //
- // PBChatRoomPublishCell.h
- // PBSDK
- //
- // Created by LStar on 2025/1/14.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class PBChatRoomPublishModel;
- @interface PBChatRoomPublishCell : UITableViewCell
- ///数据源
- @property (nonatomic,strong)PBChatRoomPublishModel *model;
- @end
- NS_ASSUME_NONNULL_END
|